From 765c8ec7464f466f562ea056e899ff5ca8aa41a3 Mon Sep 17 00:00:00 2001 From: Mason Payne Date: Sat, 30 Mar 2024 18:54:57 -0600 Subject: [PATCH] initial commit - get basic sailing info --- .gitignore | 2 + .idea/.gitignore | 10 + .idea/disney-cruise-prices.iml | 11 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + flatten-data.ts | 82 + go.mod | 3 + index.ts | 201 + output.csv | 2 + package-lock.json | 1218 +++ package.json | 19 + products.csv | 16 + products.json | 8513 ++++++++++++++++ sailings.csv | 34 + sailings.json | 16265 +++++++++++++++++++++++++++++++ tsconfig.json | 100 + 16 files changed, 26490 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/disney-cruise-prices.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 flatten-data.ts create mode 100644 go.mod create mode 100644 index.ts create mode 100644 output.csv create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 products.csv create mode 100644 products.json create mode 100644 sailings.csv create mode 100644 sailings.json create mode 100644 tsconfig.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f06235c --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +dist diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..a9d7db9 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# GitHub Copilot persisted chat sessions +/copilot/chatSessions diff --git a/.idea/disney-cruise-prices.iml b/.idea/disney-cruise-prices.iml new file mode 100644 index 0000000..5d81a31 --- /dev/null +++ b/.idea/disney-cruise-prices.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..66d9bb1 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/flatten-data.ts b/flatten-data.ts new file mode 100644 index 0000000..4bf5bf0 --- /dev/null +++ b/flatten-data.ts @@ -0,0 +1,82 @@ +import * as fs from 'fs'; +import * as json2csv from 'json2csv'; + +interface FlattenData { + [key: string]: string | number | FlattenData; +} + +function flattenJson(data: any, parentKey = '', separator = '.'): FlattenData { + const flattenedData: FlattenData = {}; + for (const key in data) { + if (data.hasOwnProperty(key)) { + const newKey = parentKey ? `${parentKey}${separator}${key}` : key; + if (typeof data[key] === 'object' && !Array.isArray(data[key])) { + const nestedData = flattenJson(data[key], newKey, separator); + Object.assign(flattenedData, nestedData); + } else { + flattenedData[newKey] = data[key]; + } + } + } + return flattenedData; +} + +export function createCsvFromJson(jsonData: string, csvFilePath: string): void { + // Load JSON data + const data = JSON.parse(jsonData); + + // Flatten JSON data + const flattenedData = flattenJson(data); + + // Get headers from flattened data + const headers = Object.keys(flattenedData); + + // Convert flattened data to array of objects for json2csv + const rows = [flattenedData]; + + // Create CSV file + const csv = json2csv.parse(rows, { fields: headers }); + fs.writeFileSync(csvFilePath, csv); + console.log(`CSV file created at: ${csvFilePath}`); +} + +export function createCsvFromJsonArray(jsonDataArray: any[], csvFilePath: string): void { + // Flatten JSON data in array + const flattenedDataArray = jsonDataArray.map((data) => flattenJson(data)); + + // Get headers from flattened data + const headers = Array.from( + new Set(flattenedDataArray.flatMap((data) => Object.keys(data))) + ); + + // Convert flattened data to array of objects for json2csv + const rows = flattenedDataArray.map((data) => headers.reduce((obj, key) => { + // @ts-ignore + obj[key] = data[key] || ''; + return obj; + }, {})); + + // Create CSV file + const csv = json2csv.parse(rows, { fields: headers }); + fs.writeFileSync(csvFilePath, csv); + console.log(`CSV file created at: ${csvFilePath}`); +} + +// Example usage +// const jsonData = `{ +// "name": "John", +// "age": 30, +// "address": { +// "street": "123 Main St", +// "city": "New York", +// "state": "NY", +// "zip": "10001" +// }, +// "phone": { +// "home": "123-456-7890", +// "work": "987-654-3210" +// } +// }`; + +// const csvFilePath = 'output.csv'; +// createCsvFromJson(jsonData, csvFilePath); diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..1a27536 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module disney-cruise-prices + +go 1.19 diff --git a/index.ts b/index.ts new file mode 100644 index 0000000..048c2a1 --- /dev/null +++ b/index.ts @@ -0,0 +1,201 @@ +import puppeteer, {Page} from 'puppeteer'; +import * as fs from "fs"; +import {createCsvFromJson, createCsvFromJsonArray} from "./flatten-data"; + +(async () => { + const browser = await puppeteer.launch({headless: false, devtools: true}); + const page = await browser.newPage(); + + await page.goto('https://disneycruise.disney.go.com/cruises-destinations/list/#september-2023,october-2023,january-2024,february-2024,march-2024,april-2024,may-2024,alaska-cruises,bahamas-cruises,bermuda-cruises,canada-cruises,caribbean-cruises,mexico-cruises,pacific-coast-cruises,5-to-6'); + + // Set screen size + await page.setViewport({width: 1519, height: 1024}); + + // Type into search box + // await page.type('.search-box__input', 'automate beyond recorder'); + + // Wait and click on first result + const showDatesButtonSelector = '.product-card-footer-wrapper__btn'; + await page.waitForSelector(showDatesButtonSelector); + // await page.click(showDatesButtonSelector); + + // Scroll down + // should scroll down until the button count stops going up + let buttonCountChanged = true; + let buttonCount = 0; + let buttonElements = await page.$$(showDatesButtonSelector); + buttonCount = buttonElements.length; + // while (buttonCountChanged) { + // await page.evaluate(() => { + // window.scrollBy(0, window.innerHeight) + // return Promise.resolve(); + // }); + // buttonElements = await page.$$(showDatesButtonSelector); + // if (buttonElements.length > buttonCount) { + // buttonCount = buttonElements.length; + // } else { + // buttonCountChanged = false; + // } + // } + // + // for (let i = 0; i < buttonElements.length; i++) { + // console.log(buttonElements[i]); + // await buttonElements[i].click(); + // // await page.waitForSelector('wdpr-price'); + // // const price = await page.$eval('wdpr-price', (el) => el.textContent); + // // console.log('price', price); + // } + + const data = await getAvailableProducts(page); + + // console.log('data'); + // console.log(JSON.stringify(data, null, ' ')); + fs.writeFileSync('products.json', JSON.stringify(data, null, ' ')); + createCsvFromJsonArray(data.products, 'products.csv'); + + let availableSailings = await Promise.all(data.products.map(async (product: { productId: string; itineraries: { itineraryId: string; }[]; }) => { + return getAvailableSailings(page, product.productId, product.itineraries[0].itineraryId).then(({sailings}): any[] => { + return sailings; + }); + })).then((results) => { + let sailings: any[] = []; + results.forEach((result) => { + sailings = sailings.concat(result); + }); + return sailings; + }); + + console.log('availableSailings'); + console.log(JSON.stringify(availableSailings, null, ' ')); + fs.writeFileSync('sailings.json', JSON.stringify(availableSailings, null, ' ')); + createCsvFromJsonArray(availableSailings, 'sailings.csv'); + + console.log('buttonCount', buttonCount); + + // // Locate the full title with a unique string + // const textSelector = await page.waitForSelector( + // 'text/Customize and automate' + // ); + // // @ts-ignore + // const fullTitle = await textSelector.evaluate(el => el.textContent); + // + // // Print the full title + // console.log('The title of this blog post is "%s".', fullTitle); + + await browser.close(); +})(); + +// function getButtonCount(page: Page) { +// return page.$$('.product-card-footer-wrapper__btn').then((buttonElements) => { +// return buttonElements.length; +// }); +// } + +function getAvailableProducts(page: Page): Promise { + return page.evaluate(() => { + return getProductsPage(1).then((data) => { + let pageCount = data.totalPages; + let promises = []; + for (let i = 2; i <= pageCount; i++) { + promises.push(getProductsPage(i)); + } + return Promise.all(promises).then((results) => { + results.forEach((result) => { + data.products = data.products.concat(result.products); + }); + return data; + }); + }); + + function getProductsPage(pageCount = 1): Promise { + return fetch('/dcl-apps-productavail-vas/available-products/', { + body: JSON.stringify({ + "currency": "USD", + "filters": ["2023-09;filterType=date", "2023-10;filterType=date", "2024-01;filterType=date", "2024-02;filterType=date", "2024-03;filterType=date", "2024-04;filterType=date", "2024-05;filterType=date", "ALASKA;filterType=destination", "BAHAMAS;filterType=destination", "BERMUDA;filterType=destination", "CANADA;filterType=destination", "CARIBBEAN;filterType=destination", "MEXICAN RIVIERA;filterType=destination", "CALIFORNIA COAST;filterType=destination", "5-6;filterType=night"], + "partyMix": [{ + "accessible": false, + "adultCount": 2, + "childCount": 2, + "nonAdultAges": [{"age": 7, "ageUnit": "YEAR"}, {"age": 9, "ageUnit": "YEAR"}], + "partyMixId": "0" + }], + "region": "INTL", + "storeId": "DCL", + "affiliations": [], + "page": pageCount, + "pageHistory": false, + "includeAdvancedBookingPrices": true, + "exploreMorePage": 1, + "exploreMorePageHistory": false + }), + headers: { + 'Content-Type': 'application/json' + }, + method: 'POST' + }).then((response) => { + return response.json(); + }).then((data) => { + return data; + }); + } + }); +} + +async function getAvailableSailings(page: Page, productID: string, itineraryId: string): Promise { + return await page.evaluate((productID, itineraryId) => { + return fetch('/dcl-apps-productavail-vas/available-sailings/', { + method: 'POST', + headers: { + 'Content-Type': 'application/json' + }, + body: JSON.stringify({ + "currency": "USD", + "filters": [ + "2023-09;filterType=date", + "2023-10;filterType=date", + "2024-01;filterType=date", + "2024-02;filterType=date", + "2024-03;filterType=date", + "2024-04;filterType=date", + "2024-05;filterType=date", + "ALASKA;filterType=destination", + "BAHAMAS;filterType=destination", + "BERMUDA;filterType=destination", + "CANADA;filterType=destination", + "CARIBBEAN;filterType=destination", + "MEXICAN RIVIERA;filterType=destination", + "CALIFORNIA COAST;filterType=destination", + "5-6;filterType=night" + ], + "partyMix": [ + { + "accessible": false, + "adultCount": 2, + "childCount": 2, + "nonAdultAges": [ + { + "age": 7, + "ageUnit": "YEAR" + }, + { + "age": 9, + "ageUnit": "YEAR" + } + ], + "partyMixId": "0" + } + ], + "region": "INTL", + "storeId": "DCL", + "affiliations": [], + "itineraryId": itineraryId, + "productId": productID, + "includeAdvancedBookingPrices": true + }) + }).then((response) => { + return response.json(); + }).then((data) => { + return data; + }); + }, productID, itineraryId); +} diff --git a/output.csv b/output.csv new file mode 100644 index 0000000..a11ae47 --- /dev/null +++ b/output.csv @@ -0,0 +1,2 @@ +"name","age","address.street","address.city","address.state","address.zip","phone.home","phone.work" +"John",30,"123 Main St","New York","NY","10001","123-456-7890","987-654-3210" \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..07fec86 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1218 @@ +{ + "name": "disney-cruise-prices", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "disney-cruise-prices", + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "json2csv": "^6.0.0-alpha.2", + "puppeteer": "^22.6.1" + }, + "devDependencies": { + "@types/json2csv": "^5.0.3" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", + "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", + "dependencies": { + "@babel/highlight": "^7.24.2", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz", + "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@puppeteer/browsers": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.2.0.tgz", + "integrity": "sha512-MC7LxpcBtdfTbzwARXIkqGZ1Osn3nnZJlm+i0+VqHl72t//Xwl9wICrXT8BwtgC6s1xJNHsxOpvzISUqe92+sw==", + "dependencies": { + "debug": "4.3.4", + "extract-zip": "2.0.1", + "progress": "2.0.3", + "proxy-agent": "6.4.0", + "semver": "7.6.0", + "tar-fs": "3.0.5", + "unbzip2-stream": "1.4.3", + "yargs": "17.7.2" + }, + "bin": { + "browsers": "lib/cjs/main-cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@streamparser/json": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@streamparser/json/-/json-0.0.6.tgz", + "integrity": "sha512-vL9EVn/v+OhZ+Wcs6O4iKE9EUpwHUqHmCtNUMWjqp+6dr85+XPOSGTEsqYNq1Vn04uk9SWlOVmx9J48ggJVT2Q==" + }, + "node_modules/@tootallnate/quickjs-emscripten": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", + "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==" + }, + "node_modules/@types/json2csv": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@types/json2csv/-/json2csv-5.0.3.tgz", + "integrity": "sha512-ZJEv6SzhPhgpBpxZU4n/TZekbZqI4EcyXXRwms1lAITG2kIAtj85PfNYafUOY1zy8bWs5ujaub0GU4copaA0sw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "8.10.66", + "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", + "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==", + "devOptional": true + }, + "node_modules/@types/yauzl": { + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", + "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/agent-base": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/ast-types": { + "version": "0.13.4", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/b4a": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz", + "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==" + }, + "node_modules/bare-events": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.2.2.tgz", + "integrity": "sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==", + "optional": true + }, + "node_modules/bare-fs": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.2.2.tgz", + "integrity": "sha512-X9IqgvyB0/VA5OZJyb5ZstoN62AzD7YxVGog13kkfYWYqJYcK0kcqLZ6TrmH5qr4/8//ejVcX4x/a0UvaogXmA==", + "optional": true, + "dependencies": { + "bare-events": "^2.0.0", + "bare-os": "^2.0.0", + "bare-path": "^2.0.0", + "streamx": "^2.13.0" + } + }, + "node_modules/bare-os": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.2.1.tgz", + "integrity": "sha512-OwPyHgBBMkhC29Hl3O4/YfxW9n7mdTr2+SsO29XBWKKJsbgj3mnorDB80r5TiCQgQstgE5ga1qNYrpes6NvX2w==", + "optional": true + }, + "node_modules/bare-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.0.tgz", + "integrity": "sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==", + "optional": true, + "dependencies": { + "bare-os": "^2.1.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/basic-ftp": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", + "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "engines": { + "node": "*" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chromium-bidi": { + "version": "0.5.14", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.14.tgz", + "integrity": "sha512-zm4mX61/U4KXs+S/0WIBHpOWqtpW6FPv1i7n4UZqDDc5LOQ9/Y1MAnB95nO7i/lFFuijLjpe1XMdNcqDqwlH5w==", + "dependencies": { + "mitt": "3.0.1", + "urlpattern-polyfill": "10.0.0", + "zod": "3.22.4" + }, + "peerDependencies": { + "devtools-protocol": "*" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/cosmiconfig": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "dependencies": { + "env-paths": "^2.2.1", + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/data-uri-to-buffer": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", + "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/degenerator": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz", + "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", + "dependencies": { + "ast-types": "^0.13.4", + "escodegen": "^2.1.0", + "esprima": "^4.0.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/devtools-protocol": { + "version": "0.0.1262051", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1262051.tgz", + "integrity": "sha512-YJe4CT5SA8on3Spa+UDtNhEqtuV6Epwz3OZ4HQVLhlRccpZ9/PAYk0/cy/oKxFKRrZPBUPyxympQci4yWNWZ9g==" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==" + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-uri": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz", + "integrity": "sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==", + "dependencies": { + "basic-ftp": "^5.0.2", + "data-uri-to-buffer": "^6.0.2", + "debug": "^4.3.4", + "fs-extra": "^11.2.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/https-proxy-agent": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", + "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ip-address": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", + "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", + "dependencies": { + "jsbn": "1.1.0", + "sprintf-js": "^1.1.3" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsbn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", + "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json2csv": { + "version": "6.0.0-alpha.2", + "resolved": "https://registry.npmjs.org/json2csv/-/json2csv-6.0.0-alpha.2.tgz", + "integrity": "sha512-nJ3oP6QxN8z69IT1HmrJdfVxhU1kLTBVgMfRnNZc37YEY+jZ4nU27rBGxT4vaqM/KUCavLRhntmTuBFqZLBUcA==", + "dependencies": { + "@streamparser/json": "^0.0.6", + "commander": "^6.2.0", + "lodash.get": "^4.4.2" + }, + "bin": { + "json2csv": "bin/json2csv.js" + }, + "engines": { + "node": ">= 12", + "npm": ">= 6.13.0" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==" + }, + "node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/netmask": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", + "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/pac-proxy-agent": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz", + "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", + "dependencies": { + "@tootallnate/quickjs-emscripten": "^0.23.0", + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "get-uri": "^6.0.1", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.2", + "pac-resolver": "^7.0.0", + "socks-proxy-agent": "^8.0.2" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/pac-resolver": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", + "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", + "dependencies": { + "degenerator": "^5.0.0", + "netmask": "^2.0.2" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/proxy-agent": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.4.0.tgz", + "integrity": "sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "http-proxy-agent": "^7.0.1", + "https-proxy-agent": "^7.0.3", + "lru-cache": "^7.14.1", + "pac-proxy-agent": "^7.0.1", + "proxy-from-env": "^1.1.0", + "socks-proxy-agent": "^8.0.2" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/puppeteer": { + "version": "22.6.1", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-22.6.1.tgz", + "integrity": "sha512-736QHNKtPD4tPeFbIn73E4l0CWsLzvRFlm0JsLG/VsyM8Eh0FRFNmMp+M3+GSMwdmYxqOVpTgzB6VQDxWxu8xQ==", + "hasInstallScript": true, + "dependencies": { + "@puppeteer/browsers": "2.2.0", + "cosmiconfig": "9.0.0", + "devtools-protocol": "0.0.1262051", + "puppeteer-core": "22.6.1" + }, + "bin": { + "puppeteer": "lib/esm/puppeteer/node/cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/puppeteer-core": { + "version": "22.6.1", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-22.6.1.tgz", + "integrity": "sha512-rShSd0xtyDSEJYys5nnzQnnwtrafQWg/lWCppyjZIIbYadWP8B1u0XJD/Oe+Xgw8v1hLHX0loNoA0ItRmNLnBg==", + "dependencies": { + "@puppeteer/browsers": "2.2.0", + "chromium-bidi": "0.5.14", + "debug": "4.3.4", + "devtools-protocol": "0.0.1262051", + "ws": "8.16.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/queue-tick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==" + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.1.tgz", + "integrity": "sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==", + "dependencies": { + "ip-address": "^9.0.5", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.3.tgz", + "integrity": "sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==", + "dependencies": { + "agent-base": "^7.1.1", + "debug": "^4.3.4", + "socks": "^2.7.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" + }, + "node_modules/streamx": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.16.1.tgz", + "integrity": "sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==", + "dependencies": { + "fast-fifo": "^1.1.0", + "queue-tick": "^1.0.1" + }, + "optionalDependencies": { + "bare-events": "^2.2.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/tar-fs": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.5.tgz", + "integrity": "sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==", + "dependencies": { + "pump": "^3.0.0", + "tar-stream": "^3.1.5" + }, + "optionalDependencies": { + "bare-fs": "^2.1.1", + "bare-path": "^2.1.0" + } + }, + "node_modules/tar-stream": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", + "dependencies": { + "b4a": "^1.6.4", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dependencies": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/urlpattern-polyfill": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", + "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==" + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/ws": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "engines": { + "node": ">=12" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/zod": { + "version": "3.22.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz", + "integrity": "sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..d064d82 --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "disney-cruise-prices", + "version": "1.0.0", + "description": "Collects the prices available on https://disneycruise.disney.go.com/", + "main": "dist/index.js", + "scripts": { + "start": "node dist/index.js", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "Mason Payne ", + "license": "MIT", + "dependencies": { + "json2csv": "^6.0.0-alpha.2", + "puppeteer": "^22.6.1" + }, + "devDependencies": { + "@types/json2csv": "^5.0.3" + } +} diff --git a/products.csv b/products.csv new file mode 100644 index 0000000..dc7fc19 --- /dev/null +++ b/products.csv @@ -0,0 +1,16 @@ +"productId","productName","productDisplayName","media.mediaProductMobilehero.url","media.mediaProductMobilehero.type","media.mediaProductMobilehero.title","media.mediaProductMobilehero.transcodeTemplate","media.mediaProductMobilehero.alt","media.mediaProductDesktopHero.url","media.mediaProductDesktopHero.type","media.mediaProductDesktopHero.title","media.mediaProductDesktopHero.transcodeTemplate","media.mediaProductDesktopHero.alt","itineraries","productItineraryData.productItineraryImages","media.headerSliver.url","media.headerSliver.type","media.headerSliver.title","media.headerSliver.transcodeTemplate","media.headerSliver.alt","productItineraryData.themeData.id","productItineraryData.themeData.media.bannerIcon.url","productItineraryData.themeData.media.bannerIcon.type","productItineraryData.themeData.media.bannerIcon.alt","productItineraryData.themeData.media.themePizzazzDesktop.url","productItineraryData.themeData.media.themePizzazzDesktop.type","productItineraryData.themeData.media.themePizzazzDesktop.alt","productItineraryData.themeData.media.themePizzazzMobile.url","productItineraryData.themeData.media.themePizzazzMobile.type","productItineraryData.themeData.media.themePizzazzMobile.alt","productItineraryData.themeData.bannerData.bannerHeader","productItineraryData.themeData.bannerData.bannerColorInit","productItineraryData.themeData.bannerData.bannerColorEnd","productItineraryData.themeData.bannerData.gradientInit","productItineraryData.themeData.bannerData.gradientEnd","media.cruiseDetailsDesktopItinerary.url","media.cruiseDetailsDesktopItinerary.type","media.cruiseDetailsDesktopItinerary.title","media.cruiseDetailsDesktopItinerary.transcodeTemplate","media.cruiseDetailsDesktopItinerary.alt","media.cruiseDetailsMobileItinerary.url","media.cruiseDetailsMobileItinerary.type","media.cruiseDetailsMobileItinerary.title","media.cruiseDetailsMobileItinerary.transcodeTemplate","media.cruiseDetailsMobileItinerary.alt" +"6_western_caribbean_galveston_san_juan","6-Night Western Caribbean Cruise from Galveston ending in San Juan","6-Night Western Caribbean Cruise from Galveston ending in San Juan","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/cozumel-mexico/cozumel-mexico-beach-snorkel-32x9.jpg?1670421500702","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/cozumel-mexico/cozumel-mexico-beach-snorkel-32x9.jpg?1670421500702","Snorkelers swim in front of a rocky shoreline with a large thatched hut and palm trees on it","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/cozumel-mexico/cozumel-mexico-beach-snorkel-32x9.jpg?1670421500702","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/cozumel-mexico/cozumel-mexico-beach-snorkel-32x9.jpg?1670421500702","Snorkelers swim in front of a rocky shoreline with a large thatched hut and palm trees on it","[{""itineraryId"":""CZM,FMH,GEC,SJU"",""numberOfSailings"":1,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DM1563"",""packageId"":""28684242"",""packageCode"":""6RGJ"",""ship"":{""id"":""2945;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Magic"",""seawareId"":""DM"",""stateroomTypes"":{""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""type"":""jpg"",""title"":""Deluxe Oceanview Stateroom – Category 9A"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""alt"":""A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}},""DM-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""type"":""jpg"",""title"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""alt"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DM-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DM-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""type"":""jpg"",""title"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""alt"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DM-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""type"":""jpg"",""title"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""alt"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":2929.92,""tax"":638,""taxIncluded"":true,""total"":3567.92},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":912,""tax"":159.5,""taxIncluded"":true,""total"":1071.5},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":912,""tax"":159.5,""taxIncluded"":true,""total"":1071.5},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":552.96,""tax"":159.5,""taxIncluded"":true,""total"":712.46},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":552.96,""tax"":159.5,""taxIncluded"":true,""total"":712.46}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3179.52,""tax"":638,""taxIncluded"":true,""total"":3817.52},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1008,""tax"":159.5,""taxIncluded"":true,""total"":1167.5},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1008,""tax"":159.5,""taxIncluded"":true,""total"":1167.5},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":581.76,""tax"":159.5,""taxIncluded"":true,""total"":741.26},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":581.76,""tax"":159.5,""taxIncluded"":true,""total"":741.26}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3861.12,""tax"":638,""taxIncluded"":true,""total"":4499.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1320,""tax"":159.5,""taxIncluded"":true,""total"":1479.5},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1320,""tax"":159.5,""taxIncluded"":true,""total"":1479.5},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":610.56,""tax"":159.5,""taxIncluded"":true,""total"":770.06},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":610.56,""tax"":159.5,""taxIncluded"":true,""total"":770.06}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7826.88,""tax"":638,""taxIncluded"":true,""total"":8464.88},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2940,""tax"":159.5,""taxIncluded"":true,""total"":3099.5},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2940,""tax"":159.5,""taxIncluded"":true,""total"":3099.5},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":973.44,""tax"":159.5,""taxIncluded"":true,""total"":1132.94},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":973.44,""tax"":159.5,""taxIncluded"":true,""total"":1132.94}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":6,""gratuitiesRate"":87}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":2929.92,""tax"":638,""taxIncluded"":true,""total"":3567.92},""portsOfCall"":[""Cozumel, Mexico"",""George Town, Grand Cayman"",""Falmouth, Jamaica"",""San Juan, Puerto Rico""],""twoStopsItinerary"":false,""oneWayItinerary"":true}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/san-juan/san-juan-adobeStock_256981147-16x9.jpg?1634249233004"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/san-juan/san-juan-adobeStock_256981147-16x9.jpg?1634249233004""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/san-juan/san-juan-adobeStock_256981147-32x9.jpg?1634249233004"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/san-juan/san-juan-adobeStock_256981147-32x9.jpg?1634249233004""}}]","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"5_eastern_caribbean_san_juan_fort_lauderdale","5-Night Eastern Caribbean Cruise from San Juan ending in Fort Lauderdale","5-Night Eastern Caribbean Cruise from San Juan ending in Fort Lauderdale","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/disney-cruise-line/ports/puerto-plata-dominican-republic/puerto-plata-beach-32x9.jpg?1679566967317","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/ports/puerto-plata-dominican-republic/puerto-plata-beach-32x9.jpg?1679566967317","A motorboat on the beach next to waterfront buildings","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/disney-cruise-line/ports/puerto-plata-dominican-republic/puerto-plata-beach-32x9.jpg?1679566967317","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/ports/puerto-plata-dominican-republic/puerto-plata-beach-32x9.jpg?1679566967317","A motorboat on the beach next to waterfront buildings","[{""itineraryId"":""GOC,NAS,PEF,STT"",""numberOfSailings"":1,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DM1566"",""packageId"":""28808718"",""packageCode"":""5SJPE"",""ship"":{""id"":""2945;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Magic"",""seawareId"":""DM"",""stateroomTypes"":{""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""type"":""jpg"",""title"":""Deluxe Oceanview Stateroom – Category 9A"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""alt"":""A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}},""DM-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""type"":""jpg"",""title"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""alt"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DM-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DM-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""type"":""jpg"",""title"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""alt"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DM-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""type"":""jpg"",""title"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""alt"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3120.8,""tax"":459,""taxIncluded"":true,""total"":3579.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":970,""tax"":114.75,""taxIncluded"":true,""total"":1084.75},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":970,""tax"":114.75,""taxIncluded"":true,""total"":1084.75},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":590.4,""tax"":114.75,""taxIncluded"":true,""total"":705.15},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":590.4,""tax"":114.75,""taxIncluded"":true,""total"":705.15}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3258.8,""tax"":459,""taxIncluded"":true,""total"":3717.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1015,""tax"":114.75,""taxIncluded"":true,""total"":1129.75},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1015,""tax"":114.75,""taxIncluded"":true,""total"":1129.75},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":614.4,""tax"":114.75,""taxIncluded"":true,""total"":729.15},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":614.4,""tax"":114.75,""taxIncluded"":true,""total"":729.15}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3926.8,""tax"":459,""taxIncluded"":true,""total"":4385.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1325,""tax"":114.75,""taxIncluded"":true,""total"":1439.75},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1325,""tax"":114.75,""taxIncluded"":true,""total"":1439.75},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":638.4,""tax"":114.75,""taxIncluded"":true,""total"":753.15},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":638.4,""tax"":114.75,""taxIncluded"":true,""total"":753.15}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7583.6,""tax"":459,""taxIncluded"":true,""total"":8042.6},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2875,""tax"":114.75,""taxIncluded"":true,""total"":2989.75},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2875,""tax"":114.75,""taxIncluded"":true,""total"":2989.75},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":916.8,""tax"":114.75,""taxIncluded"":true,""total"":1031.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":916.8,""tax"":114.75,""taxIncluded"":true,""total"":1031.55}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":5,""gratuitiesRate"":72.5}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":3120.8,""tax"":459,""taxIncluded"":true,""total"":3579.8},""portsOfCall"":[""St. Thomas, U.S. Virgin Islands"",""Nassau, Bahamas"",""Disney Castaway Cay"",""Fort Lauderdale, Florida""],""twoStopsItinerary"":false,""oneWayItinerary"":true}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/vision-dam/digital/parks-platform/parks-global-assets/stock/ft-lauderdale-fl/306620020-16x9.jpg?2022-07-05T17:29:09+00:00"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/stock/ft-lauderdale-fl/306620020-16x9.jpg?2022-07-05T17:29:09+00:00"",""alt"":""The city of Fort Lauderdale overlooking the water""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/vision-dam/digital/parks-platform/parks-global-assets/stock/ft-lauderdale-fl/306620020-32X9.jpg?2022-07-05T17:29:09+00:00"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/stock/ft-lauderdale-fl/306620020-32X9.jpg?2022-07-05T17:29:09+00:00"",""alt"":""The city of Fort Lauderdale overlooking the water""}}]","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/wdpro-assets/dcl/finder/destinations/ports-of-call/tortola-british-virgin-islands/tortola-british-virgin-islands-00.jpg?1679566967314","jpg","Let the lush landscape and tropical climate of Tortola lull you into vacation mode.","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/ports-of-call/tortola-british-virgin-islands/tortola-british-virgin-islands-00.jpg?1679566967314","Flowers, palm trees and foliage border a bay","","","","","","","","","","","","","","","","","","","","","","","","","" +"5_western_caribbean_galveston","5-Night Western Caribbean Cruise from Galveston","5-Night Western Caribbean Cruise from Galveston","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/falmouth-jamaica/falmouth-jamaica-jewel-all-inclusive-beach-break32x9.jpg?1670421401113","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/falmouth-jamaica/falmouth-jamaica-jewel-all-inclusive-beach-break32x9.jpg?1670421401113","Watercraft on the ocean by a beach featuring buildings, palm trees and hills in the distance","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/falmouth-jamaica/falmouth-jamaica-jewel-all-inclusive-beach-break32x9.jpg?1670421401113","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/falmouth-jamaica/falmouth-jamaica-jewel-all-inclusive-beach-break32x9.jpg?1670421401113","Watercraft on the ocean by a beach featuring buildings, palm trees and hills in the distance","[{""itineraryId"":""CZM,PGO"",""numberOfSailings"":4,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DM1544"",""packageId"":""28672674"",""packageCode"":""5SG"",""ship"":{""id"":""2945;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Magic"",""seawareId"":""DM"",""stateroomTypes"":{""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""type"":""jpg"",""title"":""Deluxe Oceanview Stateroom – Category 9A"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""alt"":""A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}},""DM-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""type"":""jpg"",""title"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""alt"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DM-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DM-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""type"":""jpg"",""title"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""alt"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DM-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""type"":""jpg"",""title"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""alt"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3168.4,""tax"":520.6,""taxIncluded"":true,""total"":3689},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":965,""tax"":130.15,""taxIncluded"":true,""total"":1095.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":965,""tax"":130.15,""taxIncluded"":true,""total"":1095.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":619.2,""tax"":130.15,""taxIncluded"":true,""total"":749.35},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":619.2,""tax"":130.15,""taxIncluded"":true,""total"":749.35}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3446.4,""tax"":520.6,""taxIncluded"":true,""total"":3967},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1080,""tax"":130.15,""taxIncluded"":true,""total"":1210.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1080,""tax"":130.15,""taxIncluded"":true,""total"":1210.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":643.2,""tax"":130.15,""taxIncluded"":true,""total"":773.35},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":643.2,""tax"":130.15,""taxIncluded"":true,""total"":773.35}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3874.4,""tax"":520.6,""taxIncluded"":true,""total"":4395},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1270,""tax"":130.15,""taxIncluded"":true,""total"":1400.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1270,""tax"":130.15,""taxIncluded"":true,""total"":1400.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":667.2,""tax"":130.15,""taxIncluded"":true,""total"":797.35},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":667.2,""tax"":130.15,""taxIncluded"":true,""total"":797.35}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":6412.8,""tax"":520.6,""taxIncluded"":true,""total"":6933.4},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2400,""tax"":130.15,""taxIncluded"":true,""total"":2530.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2400,""tax"":130.15,""taxIncluded"":true,""total"":2530.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":806.4,""tax"":130.15,""taxIncluded"":true,""total"":936.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":806.4,""tax"":130.15,""taxIncluded"":true,""total"":936.55}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":5,""gratuitiesRate"":72.5}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":3168.4,""tax"":520.6,""taxIncluded"":true,""total"":3689},""portsOfCall"":[""Cozumel, Mexico"",""Progreso, Mexico""],""twoStopsItinerary"":false,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-01-16x9.jpg?1676927094102"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-01-16x9.jpg?1676927094102"",""alt"":""Palm trees sway in the wind while children play on a jungle gym on a beach in Progreso, Mexico""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-01-32x9.jpg?1676927094102"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-01-32x9.jpg?1676927094102"",""alt"":""Palm trees sway in the wind while children play on a jungle gym on a beach in Progreso, Mexico""}}]","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"5_western_caribbean_new_orleans","5-Night Western Caribbean Cruise from New Orleans","5-Night Western Caribbean Cruise from New Orleans","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/disney-cruise-line/ports/progreso-mexico/plaza-mayor-de-merida-progreso-mexico-32x9.jpg?1670421410973","jpg","Visit the beautiful Plaza Mayor where vendors sell everything from food to crafts to souvenirs. It's also lined with a number of cafés to enjoy. ","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/ports/progreso-mexico/plaza-mayor-de-merida-progreso-mexico-32x9.jpg?1670421410973","Plaza Mayor, an outdoor shopping area with tall palm trees, historic Spanish buildings and people sitting at shaded café tables. ","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/disney-cruise-line/ports/progreso-mexico/plaza-mayor-de-merida-progreso-mexico-32x9.jpg?1670421410973","jpg","Visit the beautiful Plaza Mayor where vendors sell everything from food to crafts to souvenirs. It's also lined with a number of cafés to enjoy. ","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/ports/progreso-mexico/plaza-mayor-de-merida-progreso-mexico-32x9.jpg?1670421410973","Plaza Mayor, an outdoor shopping area with tall palm trees, historic Spanish buildings and people sitting at shaded café tables. ","[{""itineraryId"":""CZM,PGO"",""numberOfSailings"":3,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DM1548"",""packageId"":""28672678"",""packageCode"":""5SY"",""ship"":{""id"":""2945;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Magic"",""seawareId"":""DM"",""stateroomTypes"":{""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""type"":""jpg"",""title"":""Deluxe Oceanview Stateroom – Category 9A"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""alt"":""A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}},""DM-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""type"":""jpg"",""title"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""alt"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DM-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DM-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""type"":""jpg"",""title"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""alt"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DM-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""type"":""jpg"",""title"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""alt"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3198.4,""tax"":514.88,""taxIncluded"":true,""total"":3713.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":980,""tax"":128.72,""taxIncluded"":true,""total"":1108.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":980,""tax"":128.72,""taxIncluded"":true,""total"":1108.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":619.2,""tax"":128.72,""taxIncluded"":true,""total"":747.92},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":619.2,""tax"":128.72,""taxIncluded"":true,""total"":747.92}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3586.4,""tax"":514.88,""taxIncluded"":true,""total"":4101.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1150,""tax"":128.72,""taxIncluded"":true,""total"":1278.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1150,""tax"":128.72,""taxIncluded"":true,""total"":1278.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":643.2,""tax"":128.72,""taxIncluded"":true,""total"":771.92},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":643.2,""tax"":128.72,""taxIncluded"":true,""total"":771.92}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3994.4,""tax"":514.88,""taxIncluded"":true,""total"":4509.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1330,""tax"":128.72,""taxIncluded"":true,""total"":1458.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1330,""tax"":128.72,""taxIncluded"":true,""total"":1458.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":667.2,""tax"":128.72,""taxIncluded"":true,""total"":795.92},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":667.2,""tax"":128.72,""taxIncluded"":true,""total"":795.92}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":6590.8,""tax"":514.88,""taxIncluded"":true,""total"":7105.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2465,""tax"":128.72,""taxIncluded"":true,""total"":2593.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2465,""tax"":128.72,""taxIncluded"":true,""total"":2593.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":830.4,""tax"":128.72,""taxIncluded"":true,""total"":959.12},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":830.4,""tax"":128.72,""taxIncluded"":true,""total"":959.12}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":5,""gratuitiesRate"":72.5}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":3198.4,""tax"":514.88,""taxIncluded"":true,""total"":3713.28},""portsOfCall"":[""Cozumel, Mexico"",""Progreso, Mexico""],""twoStopsItinerary"":false,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-02-16x9.jpg?1676927094102"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-02-16x9.jpg?1676927094102"",""alt"":""The sun sets into the ocean behind one of the longest piers in the world as beachgoers look on""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-02-32x9.jpg?1676927094102"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-02-32x9.jpg?1676927094102"",""alt"":""The sun sets into the ocean behind one of the longest piers in the world as beachgoers look on""}}]","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/disney-cruise-line/ports/progreso-mexico/plaza-mayor-de-merida-progreso-00.jpg?1670421410973","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/ports/progreso-mexico/plaza-mayor-de-merida-progreso-00.jpg?1670421410973","","","","","","","","","","","","","","","","","","","","","","","","","","" +"5_western_caribbean_miami_halloween","5-Night Halloween on the High Seas Western Caribbean Cruise from Miami","5-Night Western Caribbean Cruise from Miami","","","","","","","","","","","[{""itineraryId"":""GEC,GOC"",""numberOfSailings"":1,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DM1523"",""packageId"":""28000028"",""packageCode"":""5SI"",""ship"":{""id"":""2945;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Magic"",""seawareId"":""DM"",""stateroomTypes"":{""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""type"":""jpg"",""title"":""Deluxe Oceanview Stateroom – Category 9A"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""alt"":""A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}},""DM-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""type"":""jpg"",""title"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""alt"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DM-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DM-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""type"":""jpg"",""title"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""alt"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DM-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""type"":""jpg"",""title"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""alt"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11A"",""stateroomCategoryContentId"":""DM-11A"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3700,""tax"":515.24,""taxIncluded"":true,""total"":4215.24},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1140,""tax"":128.81,""taxIncluded"":true,""total"":1268.81},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1140,""tax"":128.81,""taxIncluded"":true,""total"":1268.81},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":710,""tax"":128.81,""taxIncluded"":true,""total"":838.81},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":710,""tax"":128.81,""taxIncluded"":true,""total"":838.81}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DM-09C"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3970,""tax"":515.24,""taxIncluded"":true,""total"":4485.24},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1250,""tax"":128.81,""taxIncluded"":true,""total"":1378.81},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1250,""tax"":128.81,""taxIncluded"":true,""total"":1378.81},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":735,""tax"":128.81,""taxIncluded"":true,""total"":863.81},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":735,""tax"":128.81,""taxIncluded"":true,""total"":863.81}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEFAMILY"",""stateroomCategory"":""04E"",""stateroomCategoryContentId"":""DM-04E"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEFAMILY"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5670,""tax"":515.24,""taxIncluded"":true,""total"":6185.24},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2045,""tax"":128.81,""taxIncluded"":true,""total"":2173.81},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2045,""tax"":128.81,""taxIncluded"":true,""total"":2173.81},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":790,""tax"":128.81,""taxIncluded"":true,""total"":918.81},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":790,""tax"":128.81,""taxIncluded"":true,""total"":918.81}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7800,""tax"":515.24,""taxIncluded"":true,""total"":8315.24},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2925,""tax"":128.81,""taxIncluded"":true,""total"":3053.81},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2925,""tax"":128.81,""taxIncluded"":true,""total"":3053.81},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":975,""tax"":128.81,""taxIncluded"":true,""total"":1103.81},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":975,""tax"":128.81,""taxIncluded"":true,""total"":1103.81}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":5,""gratuitiesRate"":72.5}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":3700,""tax"":515.24,""taxIncluded"":true,""total"":4215.24},""portsOfCall"":[""George Town, Grand Cayman"",""Disney Castaway Cay""],""twoStopsItinerary"":false,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-16x9.jpg?1679666138169"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-16x9.jpg?1679666138169""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-32x9.jpg?1679666138169"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-32x9.jpg?1679666138169""}},{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-16x9.jpg?1667226141146"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-16x9.jpg?1667226141146"",""alt"":""The Admiral Donald Duck statue in front of a decorative tree with hanging pumpkins""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-32x9.jpg?1667226141146"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-32x9.jpg?1667226141146"",""alt"":""The Admiral Donald Duck statue in front of a decorative tree with hanging pumpkins""}}]","","","","","","SPOOKY","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Icon-HHS.svg?1667226141145","svg","An icon illustration of a Mickey Mouse pumpkin head","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Desktop-HHS.svg?1667226141145","svg","An icon illustration of 3 bats in front of a moon with 2 stars","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Mobile-HHS.svg?1667226141145","svg","An icon illustration of a bat amid 3 stars","Halloween on the High Seas","#539659","#2B6B30","8%","58%","","","","","","","","","","" +"5_bahamian_miami_dd_halloween","5-Night Halloween on the High Seas Bahamian Cruise from Miami with 2 Stops at Castaway Cay","5-Night Bahamian Cruise from Miami with 2 Stops at Castaway Cay","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-32x9.jpg?1631137793769","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-32x9.jpg?1631137793769","Boats docked in a harbor in front of colorful multi story houses in Nassau in The Bahamas","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-32x9.jpg?1631137793769","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-32x9.jpg?1631137793769","Boats docked in a harbor in front of colorful multi story houses in Nassau in The Bahamas","[{""itineraryId"":""GOC,NAS"",""numberOfSailings"":1,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DM1522"",""packageId"":""28000027"",""packageCode"":""5SI"",""ship"":{""id"":""2945;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Magic"",""seawareId"":""DM"",""stateroomTypes"":{""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""type"":""jpg"",""title"":""Deluxe Oceanview Stateroom – Category 9A"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""alt"":""A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}},""DM-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""type"":""jpg"",""title"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""alt"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DM-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DM-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""type"":""jpg"",""title"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""alt"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DM-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""type"":""jpg"",""title"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""alt"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3770,""tax"":481.96,""taxIncluded"":true,""total"":4251.96},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1165,""tax"":120.49,""taxIncluded"":true,""total"":1285.49},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1165,""tax"":120.49,""taxIncluded"":true,""total"":1285.49},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":120.49,""taxIncluded"":true,""total"":840.49},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":120.49,""taxIncluded"":true,""total"":840.49}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DM-09C"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4160,""tax"":481.96,""taxIncluded"":true,""total"":4641.96},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1340,""tax"":120.49,""taxIncluded"":true,""total"":1460.49},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1340,""tax"":120.49,""taxIncluded"":true,""total"":1460.49},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":740,""tax"":120.49,""taxIncluded"":true,""total"":860.49},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":740,""tax"":120.49,""taxIncluded"":true,""total"":860.49}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""05B"",""stateroomCategoryContentId"":""DM-05B"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5240,""tax"":481.96,""taxIncluded"":true,""total"":5721.96},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1855,""tax"":120.49,""taxIncluded"":true,""total"":1975.49},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1855,""tax"":120.49,""taxIncluded"":true,""total"":1975.49},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":765,""tax"":120.49,""taxIncluded"":true,""total"":885.49},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":765,""tax"":120.49,""taxIncluded"":true,""total"":885.49}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":8000,""tax"":481.96,""taxIncluded"":true,""total"":8481.96},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3000,""tax"":120.49,""taxIncluded"":true,""total"":3120.49},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3000,""tax"":120.49,""taxIncluded"":true,""total"":3120.49},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1000,""tax"":120.49,""taxIncluded"":true,""total"":1120.49},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1000,""tax"":120.49,""taxIncluded"":true,""total"":1120.49}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":5,""gratuitiesRate"":72.5}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":3770,""tax"":481.96,""taxIncluded"":true,""total"":4251.96},""portsOfCall"":[""Disney Castaway Cay"",""Nassau, Bahamas"",""Disney Castaway Cay""],""twoStopsItinerary"":true,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-16x9.jpg?1631137793768"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-16x9.jpg?1631137793768"",""alt"":""Boats docked in a harbor in front of colorful multi story houses in Nassau in The Bahamas""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-32x9.jpg?1631137793769"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-32x9.jpg?1631137793769"",""alt"":""Boats docked in a harbor in front of colorful multi story houses in Nassau in The Bahamas""}},{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-02-16x9.jpg?1667226141147"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-02-16x9.jpg?1667226141147"",""alt"":""Three illuminated and decorative Mickey Mouse pumpkins in front of an illuminated Disney Cruise Line logo on the ship""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-02-32x9.jpg?1667226141147"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-02-32x9.jpg?1667226141147"",""alt"":""Three illuminated and decorative Mickey Mouse pumpkins in front of an illuminated Disney Cruise Line logo on the ship""}}]","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/disney-cruise-line/cruise-products/miami/miami-adobestock_291616174-16x9.jpg?1658435320087","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/miami/miami-adobestock_291616174-16x9.jpg?1658435320087","Miami Beach's Ocean Drive hotels, restaurants and palm trees at sunset","SPOOKY","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Icon-HHS.svg?1667226141145","svg","An icon illustration of a Mickey Mouse pumpkin head","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Desktop-HHS.svg?1667226141145","svg","An icon illustration of 3 bats in front of a moon with 2 stars","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Mobile-HHS.svg?1667226141145","svg","An icon illustration of a bat amid 3 stars","Halloween on the High Seas","#539659","#2B6B30","8%","58%","","","","","","","","","","" +"5_western_caribbean_fort_lauderdale_marvel","5-Night Western Caribbean Cruise from Fort Lauderdale with Marvel Day at Sea","5-Night Western Caribbean Cruise from Fort Lauderdale","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733","Iron Man, with an arm outstretched, ready to do battle","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733","Iron Man, with an arm outstretched, ready to do battle","[{""itineraryId"":""GEC,GOC"",""numberOfSailings"":5,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DD1314"",""packageId"":""28656407"",""packageCode"":""5PEF"",""ship"":{""id"":""829;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Dream"",""seawareId"":""DD"",""stateroomTypes"":{""DD-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DD-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634"",""type"":""jpg"",""title"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634"",""alt"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DD-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759"",""type"":""jpg"",""title"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759"",""alt"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DD-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737"",""type"":""jpg"",""title"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737"",""alt"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.""},""media"":{}}}},""DD-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210"",""type"":""jpg"",""title"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210"",""alt"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3750,""tax"":502.28,""taxIncluded"":true,""total"":4252.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1155,""tax"":125.57,""taxIncluded"":true,""total"":1280.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1155,""tax"":125.57,""taxIncluded"":true,""total"":1280.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DD-09D"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3920,""tax"":502.28,""taxIncluded"":true,""total"":4422.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1240,""tax"":125.57,""taxIncluded"":true,""total"":1365.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1240,""tax"":125.57,""taxIncluded"":true,""total"":1365.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06B"",""stateroomCategoryContentId"":""DD-06B"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4250,""tax"":502.28,""taxIncluded"":true,""total"":4752.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1405,""tax"":125.57,""taxIncluded"":true,""total"":1530.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1405,""tax"":125.57,""taxIncluded"":true,""total"":1530.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":8056.8,""tax"":502.28,""taxIncluded"":true,""total"":8559.08},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2910,""tax"":125.57,""taxIncluded"":true,""total"":3035.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2910,""tax"":125.57,""taxIncluded"":true,""total"":3035.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1118.4,""tax"":125.57,""taxIncluded"":true,""total"":1243.97},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1118.4,""tax"":125.57,""taxIncluded"":true,""total"":1243.97}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":5,""gratuitiesRate"":72.5}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":3750,""tax"":502.28,""taxIncluded"":true,""total"":4252.28},""portsOfCall"":[""George Town, Grand Cayman"",""Disney Castaway Cay""],""twoStopsItinerary"":false,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-06-16x9.jpg?1679666138169"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-06-16x9.jpg?1679666138169"",""alt"":""A Disney Cruise Line ship docked at a beach in Castaway Cay""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-06-32x9.jpg?1679666138169"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-06-32x9.jpg?1679666138169"",""alt"":""A Disney Cruise Line ship docked at a beach in Castaway Cay""}},{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-16x9.jpg?1671651280261"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-16x9.jpg?1671651280261"",""alt"":""Iron Man, with an arm outstretched, ready to do battle""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1671651280261"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1671651280261"",""alt"":""Iron Man, with an arm outstretched, ready to do battle""}}]","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-16x9.jpg?1675699007729","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-16x9.jpg?1675699007729","Iron Man, with an arm outstretched, ready to do battle","MDAS","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Icon-Marvel.svg?1671651280260","svg","A circular icon illustration featuring half of the face of Spider Man joined with half of the shield of Captain America","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Desktop-Marvel.svg?1671651280260","svg","An icon illustration featuring the hammer of Thor in flight with thunderbolts","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Mobile-Marvel.svg?1671651280260","svg","An icon illustration featuring the hammer of Thor in flight with thunderbolts","Marvel Day at Sea","#0079BC","#00588A","45%","84%","","","","","","","","","","" +"5_western_caribbean_fort_lauderdale_marvel","5-Night Western Caribbean Cruise from Fort Lauderdale with Marvel Day at Sea","5-Night Western Caribbean Cruise from Fort Lauderdale","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733","Iron Man, with an arm outstretched, ready to do battle","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733","Iron Man, with an arm outstretched, ready to do battle","[{""itineraryId"":""CZM,GOC"",""numberOfSailings"":5,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DD1312"",""packageId"":""28656405"",""packageCode"":""5PEF"",""ship"":{""id"":""829;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Dream"",""seawareId"":""DD"",""stateroomTypes"":{""DD-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DD-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634"",""type"":""jpg"",""title"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634"",""alt"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DD-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759"",""type"":""jpg"",""title"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759"",""alt"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DD-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737"",""type"":""jpg"",""title"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737"",""alt"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.""},""media"":{}}}},""DD-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210"",""type"":""jpg"",""title"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210"",""alt"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3750,""tax"":592.12,""taxIncluded"":true,""total"":4342.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1155,""tax"":148.03,""taxIncluded"":true,""total"":1303.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1155,""tax"":148.03,""taxIncluded"":true,""total"":1303.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DD-09D"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3920,""tax"":592.12,""taxIncluded"":true,""total"":4512.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1240,""tax"":148.03,""taxIncluded"":true,""total"":1388.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1240,""tax"":148.03,""taxIncluded"":true,""total"":1388.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06B"",""stateroomCategoryContentId"":""DD-06B"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4250,""tax"":592.12,""taxIncluded"":true,""total"":4842.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1405,""tax"":148.03,""taxIncluded"":true,""total"":1553.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1405,""tax"":148.03,""taxIncluded"":true,""total"":1553.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7997.6,""tax"":592.12,""taxIncluded"":true,""total"":8589.72},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2890,""tax"":148.03,""taxIncluded"":true,""total"":3038.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2890,""tax"":148.03,""taxIncluded"":true,""total"":3038.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1108.8,""tax"":148.03,""taxIncluded"":true,""total"":1256.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1108.8,""tax"":148.03,""taxIncluded"":true,""total"":1256.83}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":5,""gratuitiesRate"":72.5}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":3750,""tax"":592.12,""taxIncluded"":true,""total"":4342.12},""portsOfCall"":[""Cozumel, Mexico"",""Disney Castaway Cay""],""twoStopsItinerary"":false,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-03-16x9.jpg?1679666138167"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-03-16x9.jpg?1679666138167"",""alt"":""A family of 4 pets stingrays on Disney Castaway Cay with a Disney ship in the background""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-03-32x9.jpg?1679666138167"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-03-32x9.jpg?1679666138167"",""alt"":""A family of 4 pets stingrays on Disney Castaway Cay with a Disney ship in the background""}},{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-00-16x9.jpg?1671651280261"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-00-16x9.jpg?1671651280261"",""alt"":""Thor, with hammer in hand, strikes a pose in front of a Disney Cruise Line ship funnel""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-00-32x9.jpg?1671651280261"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-00-32x9.jpg?1671651280261"",""alt"":""Thor, with hammer in hand, strikes a pose in front of a Disney Cruise Line ship funnel""}}]","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-16x9.jpg?1675699007729","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-16x9.jpg?1675699007729","Iron Man, with an arm outstretched, ready to do battle","MDAS","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Icon-Marvel.svg?1671651280260","svg","A circular icon illustration featuring half of the face of Spider Man joined with half of the shield of Captain America","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Desktop-Marvel.svg?1671651280260","svg","An icon illustration featuring the hammer of Thor in flight with thunderbolts","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Mobile-Marvel.svg?1671651280260","svg","An icon illustration featuring the hammer of Thor in flight with thunderbolts","Marvel Day at Sea","#0079BC","#00588A","45%","84%","","","","","","","","","","" +"5_western_fort_lauderdale","5-Night Western Caribbean Cruise from Fort Lauderdale","5-Night Western Caribbean Cruise from Fort Lauderdale","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00","A beach and boardwalk in Fort Lauderdale at sunset","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00","A beach and boardwalk in Fort Lauderdale at sunset","[{""itineraryId"":""GEC,GOC"",""numberOfSailings"":3,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DD1336"",""packageId"":""28656579"",""packageCode"":""5PEF"",""ship"":{""id"":""829;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Dream"",""seawareId"":""DD"",""stateroomTypes"":{""DD-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DD-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634"",""type"":""jpg"",""title"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634"",""alt"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DD-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759"",""type"":""jpg"",""title"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759"",""alt"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DD-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737"",""type"":""jpg"",""title"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737"",""alt"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.""},""media"":{}}}},""DD-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210"",""type"":""jpg"",""title"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210"",""alt"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3960,""tax"":502.28,""taxIncluded"":true,""total"":4462.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1260,""tax"":125.57,""taxIncluded"":true,""total"":1385.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1260,""tax"":125.57,""taxIncluded"":true,""total"":1385.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09B"",""stateroomCategoryContentId"":""DD-09B"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4190,""tax"":502.28,""taxIncluded"":true,""total"":4692.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1375,""tax"":125.57,""taxIncluded"":true,""total"":1500.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1375,""tax"":125.57,""taxIncluded"":true,""total"":1500.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06B"",""stateroomCategoryContentId"":""DD-06B"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4460,""tax"":502.28,""taxIncluded"":true,""total"":4962.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1510,""tax"":125.57,""taxIncluded"":true,""total"":1635.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1510,""tax"":125.57,""taxIncluded"":true,""total"":1635.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":8452.4,""tax"":502.28,""taxIncluded"":true,""total"":8954.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3055,""tax"":125.57,""taxIncluded"":true,""total"":3180.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3055,""tax"":125.57,""taxIncluded"":true,""total"":3180.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1171.2,""tax"":125.57,""taxIncluded"":true,""total"":1296.77},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1171.2,""tax"":125.57,""taxIncluded"":true,""total"":1296.77}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":5,""gratuitiesRate"":72.5}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":3960,""tax"":502.28,""taxIncluded"":true,""total"":4462.28},""portsOfCall"":[""George Town, Grand Cayman"",""Disney Castaway Cay""],""twoStopsItinerary"":false,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/george-town-grand-cayman/george-town-grand-cayman-00-16x9.jpg?1634249196677"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/george-town-grand-cayman/george-town-grand-cayman-00-16x9.jpg?1634249196677"",""alt"":""An aerial view of George Town in Grand Cayman surrounded by the Caribbean Sea""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/george-town-grand-cayman/george-town-grand-cayman-00-32x9.jpg?1634249196677"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/george-town-grand-cayman/george-town-grand-cayman-00-32x9.jpg?1634249196677"",""alt"":""An aerial view of George Town in Grand Cayman surrounded by the Caribbean Sea""}}]","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-00.jpg?2022-09-08T21:17:18+00:00","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-00.jpg?2022-09-08T21:17:18+00:00","A beach and boardwalk in Fort Lauderdale at sunset","","","","","","","","","","","","","","","","","","","","","","","","","" +"5_bermuda_new_york","5-Night Bermuda Cruise from New York","5-Night Bermuda Cruise from New York","","","","","","","","","","","[{""itineraryId"":""KWF"",""numberOfSailings"":1,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DD1290"",""packageId"":""28387281"",""packageCode"":""5SN"",""ship"":{""id"":""829;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Dream"",""seawareId"":""DD"",""stateroomTypes"":{""DD-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DD-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634"",""type"":""jpg"",""title"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634"",""alt"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DD-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759"",""type"":""jpg"",""title"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759"",""alt"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DD-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737"",""type"":""jpg"",""title"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737"",""alt"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.""},""media"":{}}}},""DD-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210"",""type"":""jpg"",""title"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210"",""alt"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3953.6,""tax"":933.72,""taxIncluded"":true,""total"":4887.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1300,""tax"":233.43,""taxIncluded"":true,""total"":1533.43},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1300,""tax"":233.43,""taxIncluded"":true,""total"":1533.43},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":233.43,""taxIncluded"":true,""total"":910.23},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":233.43,""taxIncluded"":true,""total"":910.23}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09B"",""stateroomCategoryContentId"":""DD-09B"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4063.6,""tax"":933.72,""taxIncluded"":true,""total"":4997.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1355,""tax"":233.43,""taxIncluded"":true,""total"":1588.43},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1355,""tax"":233.43,""taxIncluded"":true,""total"":1588.43},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":233.43,""taxIncluded"":true,""total"":910.23},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":233.43,""taxIncluded"":true,""total"":910.23}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""05C"",""stateroomCategoryContentId"":""DD-05C"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4373.6,""tax"":933.72,""taxIncluded"":true,""total"":5307.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1510,""tax"":233.43,""taxIncluded"":true,""total"":1743.43},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1510,""tax"":233.43,""taxIncluded"":true,""total"":1743.43},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":233.43,""taxIncluded"":true,""total"":910.23},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":233.43,""taxIncluded"":true,""total"":910.23}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-ONE-BEDROOM"",""stateroomCategory"":""02B"",""stateroomCategoryContentId"":""DD-02B"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-ONE-BEDROOM"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":11974.4,""tax"":933.72,""taxIncluded"":true,""total"":12908.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":4480,""tax"":233.43,""taxIncluded"":true,""total"":4713.43},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":4480,""tax"":233.43,""taxIncluded"":true,""total"":4713.43},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1507.2,""tax"":233.43,""taxIncluded"":true,""total"":1740.63},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1507.2,""tax"":233.43,""taxIncluded"":true,""total"":1740.63}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":5,""gratuitiesRate"":72.5}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":3953.6,""tax"":933.72,""taxIncluded"":true,""total"":4887.32},""portsOfCall"":[""King's Wharf, Bermuda"",""King's Wharf, Bermuda""],""twoStopsItinerary"":false,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-01-16x9.jpg?1617746716939"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-01-16x9.jpg?1617746716939"",""alt"":""Colorful houses on a hillside overlook the ocean in Bermuda""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-01-32x9.jpg?1617746716939"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-01-32x9.jpg?1617746716939"",""alt"":""Colorful houses on a hillside overlook the ocean in Bermuda""}}]","","","","","","","","","","","","","","","","","","","","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/400/75/dam/wdpro-assets/dcl/cruises-destinations/itineraries/bermuda-00-2.4x1.jpg?1680708557248","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/cruises-destinations/itineraries/bermuda-00-2.4x1.jpg?1680708557248","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/156/75/dam/wdpro-assets/dcl/cruises-destinations/itineraries/bermuda-00-2.4x1.jpg?1680708557248","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/cruises-destinations/itineraries/bermuda-00-2.4x1.jpg?1680708557248","" +"6_western_caribbean_port_canaveral_halloween","6-Night Halloween on the High Seas Western Caribbean Cruise from Port Canaveral","6-Night Western Caribbean Cruise from Port Canaveral","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1617775095719","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1617775095719","Dressed in Halloween attire, Mickey Mouse and Minnie Mouse perform aboard a Disney cruise","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1617775095719","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1617775095719","Dressed in Halloween attire, Mickey Mouse and Minnie Mouse perform aboard a Disney cruise","[{""itineraryId"":""CZM,GEC,GOC"",""numberOfSailings"":1,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DF0637"",""packageId"":""27143817"",""packageCode"":""6S"",""ship"":{""id"":""3143;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Fantasy"",""seawareId"":""DF"",""stateroomTypes"":{""DF-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DF-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/verandah/DDDF-Verandah-00-full.jpg?1598963594363"",""type"":""jpg"",""title"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/verandah/DDDF-Verandah-00-full.jpg?1598963594363"",""alt"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Fantasy""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DF-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DF-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/oceanview/DDDF-Oceanview-00-full.jpg?1590003311203"",""type"":""jpg"",""title"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/oceanview/DDDF-Oceanview-00-full.jpg?1590003311203"",""alt"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311204"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311204"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311205"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311205"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Fantasy""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}},""DF-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DF-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/inside/DDDF-Inside-00-full.jpg?1598963565554"",""type"":""jpg"",""title"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/inside/DDDF-Inside-00-full.jpg?1598963565554"",""alt"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters!
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters!""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Fantasy""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.""},""media"":{}}}},""DF-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DF-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/concierge/DDDF-Concierge-00-full.jpg?1598963518060"",""type"":""jpg"",""title"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/concierge/DDDF-Concierge-00-full.jpg?1598963518060"",""alt"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Fantasy""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DF-INSIDE"",""stateroomSubType"":""DF-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DF-11B"",""stateroomSubTypeContentId"":""DF-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4380,""tax"":514.2,""taxIncluded"":true,""total"":4894.2},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1380,""tax"":128.55,""taxIncluded"":true,""total"":1508.55},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1380,""tax"":128.55,""taxIncluded"":true,""total"":1508.55},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":810,""tax"":128.55,""taxIncluded"":true,""total"":938.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":810,""tax"":128.55,""taxIncluded"":true,""total"":938.55}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DF-OUTSIDE"",""stateroomSubType"":""DF-OUTSIDE-DELUXE"",""stateroomCategory"":""09B"",""stateroomCategoryContentId"":""DF-09B"",""stateroomSubTypeContentId"":""DF-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4560,""tax"":514.2,""taxIncluded"":true,""total"":5074.2},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1470,""tax"":128.55,""taxIncluded"":true,""total"":1598.55},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1470,""tax"":128.55,""taxIncluded"":true,""total"":1598.55},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":810,""tax"":128.55,""taxIncluded"":true,""total"":938.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":810,""tax"":128.55,""taxIncluded"":true,""total"":938.55}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DF-VERANDAH"",""stateroomSubType"":""DF-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06B"",""stateroomCategoryContentId"":""DF-06B"",""stateroomSubTypeContentId"":""DF-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4920,""tax"":514.2,""taxIncluded"":true,""total"":5434.2},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1650,""tax"":128.55,""taxIncluded"":true,""total"":1778.55},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1650,""tax"":128.55,""taxIncluded"":true,""total"":1778.55},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":810,""tax"":128.55,""taxIncluded"":true,""total"":938.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":810,""tax"":128.55,""taxIncluded"":true,""total"":938.55}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DF-SUITE"",""stateroomSubType"":""DF-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DF-03A"",""stateroomSubTypeContentId"":""DF-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":9036,""tax"":514.2,""taxIncluded"":true,""total"":9550.2},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3306,""tax"":128.55,""taxIncluded"":true,""total"":3434.55},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3306,""tax"":128.55,""taxIncluded"":true,""total"":3434.55},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1212,""tax"":128.55,""taxIncluded"":true,""total"":1340.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1212,""tax"":128.55,""taxIncluded"":true,""total"":1340.55}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":6,""gratuitiesRate"":87}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":4380,""tax"":514.2,""taxIncluded"":true,""total"":4894.2},""portsOfCall"":[""Cozumel, Mexico"",""George Town, Grand Cayman"",""Disney Castaway Cay""],""twoStopsItinerary"":false,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-04-16x9.jpg?1679666138167"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-04-16x9.jpg?1679666138167""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-04-32x9.jpg?1679666138167"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-04-32x9.jpg?1679666138167""}},{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-00-16x9.jpg?1667226141145"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-00-16x9.jpg?1667226141145"",""alt"":""A decorative pumpkin carved in the shape of Minnie Mouse's head""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-00-32x9.jpg?1667226141146"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-00-32x9.jpg?1667226141146"",""alt"":""A decorative pumpkin carved in the shape of Minnie Mouse's head""}}]","","","","","","SPOOKY","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Icon-HHS.svg?1667226141145","svg","An icon illustration of a Mickey Mouse pumpkin head","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Desktop-HHS.svg?1667226141145","svg","An icon illustration of 3 bats in front of a moon with 2 stars","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Mobile-HHS.svg?1667226141145","svg","An icon illustration of a bat amid 3 stars","Halloween on the High Seas","#539659","#2B6B30","8%","58%","","","","","","","","","","" +"6_western_caribbean_galveston","6-Night Western Caribbean Cruise from Galveston","6-Night Western Caribbean Cruise from Galveston","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/grand-cayman/grand-cayman-islands-32x9.jpg?1670421556098","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/grand-cayman/grand-cayman-islands-32x9.jpg?1670421556098","A beach with chairs and a dock that has 3 gazeboes, a bar, chairs and tables","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/grand-cayman/grand-cayman-islands-32x9.jpg?1670421556098","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/grand-cayman/grand-cayman-islands-32x9.jpg?1670421556098","A beach with chairs and a dock that has 3 gazeboes, a bar, chairs and tables","[{""itineraryId"":""CTM,CZM"",""numberOfSailings"":2,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DM1559"",""packageId"":""28678745"",""packageCode"":""6SG"",""ship"":{""id"":""2945;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Magic"",""seawareId"":""DM"",""stateroomTypes"":{""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""type"":""jpg"",""title"":""Deluxe Oceanview Stateroom – Category 9A"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""alt"":""A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}},""DM-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""type"":""jpg"",""title"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""alt"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DM-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DM-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""type"":""jpg"",""title"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""alt"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DM-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""type"":""jpg"",""title"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""alt"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4452,""tax"":561.52,""taxIncluded"":true,""total"":5013.52},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1410,""tax"":140.38,""taxIncluded"":true,""total"":1550.38},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1410,""tax"":140.38,""taxIncluded"":true,""total"":1550.38},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":816,""tax"":140.38,""taxIncluded"":true,""total"":956.38},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":816,""tax"":140.38,""taxIncluded"":true,""total"":956.38}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4788,""tax"":561.52,""taxIncluded"":true,""total"":5349.52},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1548,""tax"":140.38,""taxIncluded"":true,""total"":1688.38},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1548,""tax"":140.38,""taxIncluded"":true,""total"":1688.38},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":846,""tax"":140.38,""taxIncluded"":true,""total"":986.38},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":846,""tax"":140.38,""taxIncluded"":true,""total"":986.38}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5760,""tax"":561.52,""taxIncluded"":true,""total"":6321.52},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2004,""tax"":140.38,""taxIncluded"":true,""total"":2144.38},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2004,""tax"":140.38,""taxIncluded"":true,""total"":2144.38},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":876,""tax"":140.38,""taxIncluded"":true,""total"":1016.38},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":876,""tax"":140.38,""taxIncluded"":true,""total"":1016.38}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":10224,""tax"":561.52,""taxIncluded"":true,""total"":10785.52},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3840,""tax"":140.38,""taxIncluded"":true,""total"":3980.38},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3840,""tax"":140.38,""taxIncluded"":true,""total"":3980.38},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1272,""tax"":140.38,""taxIncluded"":true,""total"":1412.38},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1272,""tax"":140.38,""taxIncluded"":true,""total"":1412.38}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":6,""gratuitiesRate"":87}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":4452,""tax"":561.52,""taxIncluded"":true,""total"":5013.52},""portsOfCall"":[""Costa Maya, Mexico"",""Cozumel, Mexico""],""twoStopsItinerary"":false,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/costa-maya/costa-maya-adobestock_153992054-16x9.jpg?1676992543225"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/costa-maya/costa-maya-adobestock_153992054-16x9.jpg?1676992543225"",""alt"":""Many large turtles swim in the clear water of Costa Maya""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/costa-maya/costa-maya-adobestock_153992054-32x9.jpg?1676992543225"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/costa-maya/costa-maya-adobestock_153992054-32x9.jpg?1676992543225"",""alt"":""Many large turtles swim in the clear water of Costa Maya""}}]","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/wdpro-assets/dcl/finder/destinations/ports-of-call/grand-cayman-cayman-islands/grand-cayman-islands-16x9.jpg?1670421556098","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/ports-of-call/grand-cayman-cayman-islands/grand-cayman-islands-16x9.jpg?1670421556098","","","","","","","","","","","","","","","","","","","","","","","","","","" +"5_western_fort_lauderdale","5-Night Western Caribbean Cruise from Fort Lauderdale","5-Night Western Caribbean Cruise from Fort Lauderdale","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00","A beach and boardwalk in Fort Lauderdale at sunset","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00","A beach and boardwalk in Fort Lauderdale at sunset","[{""itineraryId"":""CZM,GOC"",""numberOfSailings"":2,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DM1572"",""packageId"":""28808724"",""packageCode"":""5PEF"",""ship"":{""id"":""2945;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Magic"",""seawareId"":""DM"",""stateroomTypes"":{""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""type"":""jpg"",""title"":""Deluxe Oceanview Stateroom – Category 9A"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283"",""alt"":""A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}},""DM-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""type"":""jpg"",""title"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645"",""alt"":""A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DM-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DM-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""type"":""jpg"",""title"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605"",""alt"":""Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DM-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DM-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""type"":""jpg"",""title"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378"",""alt"":""Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Magic""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4502,""tax"":594.28,""taxIncluded"":true,""total"":5096.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1315,""tax"":148.57,""taxIncluded"":true,""total"":1463.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1315,""tax"":148.57,""taxIncluded"":true,""total"":1463.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":936,""tax"":148.57,""taxIncluded"":true,""total"":1084.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":936,""tax"":148.57,""taxIncluded"":true,""total"":1084.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4909.6,""tax"":594.28,""taxIncluded"":true,""total"":5503.88},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1490,""tax"":148.57,""taxIncluded"":true,""total"":1638.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1490,""tax"":148.57,""taxIncluded"":true,""total"":1638.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":964.8,""tax"":148.57,""taxIncluded"":true,""total"":1113.37},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":964.8,""tax"":148.57,""taxIncluded"":true,""total"":1113.37}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5884.4,""tax"":594.28,""taxIncluded"":true,""total"":6478.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1915,""tax"":148.57,""taxIncluded"":true,""total"":2063.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1915,""tax"":148.57,""taxIncluded"":true,""total"":2063.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1027.2,""tax"":148.57,""taxIncluded"":true,""total"":1175.77},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1027.2,""tax"":148.57,""taxIncluded"":true,""total"":1175.77}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":10496.4,""tax"":594.28,""taxIncluded"":true,""total"":11090.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3885,""tax"":148.57,""taxIncluded"":true,""total"":4033.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3885,""tax"":148.57,""taxIncluded"":true,""total"":4033.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1363.2,""tax"":148.57,""taxIncluded"":true,""total"":1511.77},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1363.2,""tax"":148.57,""taxIncluded"":true,""total"":1511.77}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":5,""gratuitiesRate"":72.5}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":4502,""tax"":594.28,""taxIncluded"":true,""total"":5096.28},""portsOfCall"":[""Disney Castaway Cay"",""Cozumel, Mexico""],""twoStopsItinerary"":false,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/cozumel-mexico/cozumel-mexico-01-16x9.jpg?1679932310648"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/cozumel-mexico/cozumel-mexico-01-16x9.jpg?1679932310648"",""alt"":""A lighthouse overlooks a serene seashore and the Atlantic Ocean in Cozumel, Mexico""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/cozumel-mexico/cozumel-mexico-01-32x9.jpg?1679932310648"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/cozumel-mexico/cozumel-mexico-01-32x9.jpg?1679932310648"",""alt"":""A lighthouse overlooks a serene seashore and the Atlantic Ocean in Cozumel, Mexico""}}]","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-00.jpg?2022-09-08T21:17:18+00:00","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-00.jpg?2022-09-08T21:17:18+00:00","A beach and boardwalk in Fort Lauderdale at sunset","","","","","","","","","","","","","","","","","","","","","","","","","" +"6_bermuda_new_york_halloween","6-Night Halloween on the High Seas Bermuda Cruise from New York","6-Night Bermuda Cruise from New York","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1658403189591","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1658403189591","Dressed in Halloween attire, Mickey Mouse and Minnie Mouse perform aboard a Disney cruise","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1658403189591","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1658403189591","Dressed in Halloween attire, Mickey Mouse and Minnie Mouse perform aboard a Disney cruise","[{""itineraryId"":""KWF"",""numberOfSailings"":2,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DD1295"",""packageId"":""28387286"",""packageCode"":""6SN"",""ship"":{""id"":""829;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Dream"",""seawareId"":""DD"",""stateroomTypes"":{""DD-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DD-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634"",""type"":""jpg"",""title"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634"",""alt"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DD-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759"",""type"":""jpg"",""title"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759"",""alt"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DD-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737"",""type"":""jpg"",""title"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737"",""alt"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.""},""media"":{}}}},""DD-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210"",""type"":""jpg"",""title"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210"",""alt"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4543.68,""tax"":1061.16,""taxIncluded"":true,""total"":5604.84},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1500,""tax"":265.29,""taxIncluded"":true,""total"":1765.29},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1500,""tax"":265.29,""taxIncluded"":true,""total"":1765.29},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":771.84,""tax"":265.29,""taxIncluded"":true,""total"":1037.13},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":771.84,""tax"":265.29,""taxIncluded"":true,""total"":1037.13}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DD-09C"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4615.68,""tax"":1061.16,""taxIncluded"":true,""total"":5676.84},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1536,""tax"":265.29,""taxIncluded"":true,""total"":1801.29},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1536,""tax"":265.29,""taxIncluded"":true,""total"":1801.29},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":771.84,""tax"":265.29,""taxIncluded"":true,""total"":1037.13},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":771.84,""tax"":265.29,""taxIncluded"":true,""total"":1037.13}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4951.68,""tax"":1061.16,""taxIncluded"":true,""total"":6012.84},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1704,""tax"":265.29,""taxIncluded"":true,""total"":1969.29},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1704,""tax"":265.29,""taxIncluded"":true,""total"":1969.29},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":771.84,""tax"":265.29,""taxIncluded"":true,""total"":1037.13},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":771.84,""tax"":265.29,""taxIncluded"":true,""total"":1037.13}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":10296,""tax"":1061.16,""taxIncluded"":true,""total"":11357.16},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3852,""tax"":265.29,""taxIncluded"":true,""total"":4117.29},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3852,""tax"":265.29,""taxIncluded"":true,""total"":4117.29},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1296,""tax"":265.29,""taxIncluded"":true,""total"":1561.29},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1296,""tax"":265.29,""taxIncluded"":true,""total"":1561.29}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":6,""gratuitiesRate"":87}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":4543.68,""tax"":1061.16,""taxIncluded"":true,""total"":5604.84},""portsOfCall"":[""King's Wharf, Bermuda"",""King's Wharf, Bermuda"",""King's Wharf, Bermuda""],""twoStopsItinerary"":false,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-04-16x9.jpg?1617746716940"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-04-16x9.jpg?1617746716940"",""alt"":""Waves lapping along a pristine beach with verdant flora in Bermuda""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-04-32x9.jpg?1617746716940"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-04-32x9.jpg?1617746716940"",""alt"":""Waves lapping along a pristine beach with verdant flora in Bermuda""}},{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-16x9.jpg?1667226141146"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-16x9.jpg?1667226141146"",""alt"":""The Admiral Donald Duck statue in front of a decorative tree with hanging pumpkins""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-32x9.jpg?1667226141146"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-32x9.jpg?1667226141146"",""alt"":""The Admiral Donald Duck statue in front of a decorative tree with hanging pumpkins""}}]","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-16x9.jpg?1658403189591","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-16x9.jpg?1658403189591","","SPOOKY","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Icon-HHS.svg?1667226141145","svg","An icon illustration of a Mickey Mouse pumpkin head","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Desktop-HHS.svg?1667226141145","svg","An icon illustration of 3 bats in front of a moon with 2 stars","https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Mobile-HHS.svg?1667226141145","svg","An icon illustration of a bat amid 3 stars","Halloween on the High Seas","#539659","#2B6B30","8%","58%","","","","","","","","","","" +"5_bahamian_fort_lauderdale_dd","5-Night Bahamian Cruise with 2 Stops at Castaway Cay from Fort Lauderdale","5-Night Bahamian Cruise with 2 Stops at Castaway Cay from Fort Lauderdale","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/306620020-32x9.jpg?2022-09-08T21:17:18+00:00","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/306620020-32x9.jpg?2022-09-08T21:17:18+00:00","The city of Fort Lauderdale overlooking the water","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/306620020-32x9.jpg?2022-09-08T21:17:18+00:00","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/306620020-32x9.jpg?2022-09-08T21:17:18+00:00","The city of Fort Lauderdale overlooking the water","[{""itineraryId"":""GOC,NAS"",""numberOfSailings"":1,""blockedFromBooking"":false,""sailings"":[{""sailingId"":""DD1326"",""packageId"":""28656442"",""packageCode"":""5PEF"",""ship"":{""id"":""829;entityType=ship;destination=dcl"",""type"":""ship"",""name"":""Disney Dream"",""seawareId"":""DD"",""stateroomTypes"":{""DD-VERANDAH;entityType=stateroom-type;destination=dcl"":{""id"":""DD-VERANDAH;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Verandah"",""displayOrder"":{""displayOrder"":3},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634"",""type"":""jpg"",""title"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634"",""alt"":""Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).""},""media"":{}}}},""DD-SUITE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-SUITE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Concierge"",""displayOrder"":{""displayOrder"":4},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759"",""type"":""jpg"",""title"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759"",""alt"":""Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
"",""type"":""webDescription"",""sections"":{""body"":""For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Our most luxurious accommodations feature a large private verandah and premium amenities and services.""},""media"":{}}}},""DD-INSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-INSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Inside"",""displayOrder"":{""displayOrder"":1},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737"",""type"":""jpg"",""title"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737"",""alt"":""Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.""},""media"":{}}}},""DD-OUTSIDE;entityType=stateroom-type;destination=dcl"":{""id"":""DD-OUTSIDE;entityType=stateroom-type;destination=dcl"",""type"":""stateroom-type"",""name"":""Oceanview"",""displayOrder"":{""displayOrder"":2},""media"":{""finderDetailStateroomsFullWidthHero"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210"",""type"":""jpg"",""title"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210"",""alt"":""Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed""},""stateroomClassDesktop"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""alt"":""""},""stateroomClassMobile"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""type"":""jpg"",""title"":"""",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211"",""alt"":""""}},""descriptions"":{""shortDescription"":{""id"":"""",""text"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
"",""type"":""webDescription"",""sections"":{""body"":""A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.""},""media"":{}},""ctaCard"":{""id"":"""",""text"":""Null"",""type"":""webDescription"",""sections"":{""buttonCardHeader"":""View Prices"",""body"":""Search for Cruises Aboard the Disney Dream""},""media"":{}},""stateroomClassDescription"":{""id"":"""",""text"":"""",""type"":""webDescription"",""sections"":{""body"":""Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!""},""media"":{}}}}}},""available"":true,""travelParties"":{""0"":[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5752,""tax"":467.32,""taxIncluded"":true,""total"":6219.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1700,""tax"":116.83,""taxIncluded"":true,""total"":1816.83},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1700,""tax"":116.83,""taxIncluded"":true,""total"":1816.83},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1176,""tax"":116.83,""taxIncluded"":true,""total"":1292.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1176,""tax"":116.83,""taxIncluded"":true,""total"":1292.83}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DD-09C"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5952,""tax"":467.32,""taxIncluded"":true,""total"":6419.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1800,""tax"":116.83,""taxIncluded"":true,""total"":1916.83},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1800,""tax"":116.83,""taxIncluded"":true,""total"":1916.83},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1176,""tax"":116.83,""taxIncluded"":true,""total"":1292.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1176,""tax"":116.83,""taxIncluded"":true,""total"":1292.83}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":6212,""tax"":467.32,""taxIncluded"":true,""total"":6679.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1930,""tax"":116.83,""taxIncluded"":true,""total"":2046.83},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1930,""tax"":116.83,""taxIncluded"":true,""total"":2046.83},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1176,""tax"":116.83,""taxIncluded"":true,""total"":1292.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1176,""tax"":116.83,""taxIncluded"":true,""total"":1292.83}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-ROYAL"",""stateroomCategory"":""01A"",""stateroomCategoryContentId"":""DD-01A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-ROYAL"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":30355.2,""tax"":467.32,""taxIncluded"":true,""total"":30822.52},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":12240,""tax"":116.83,""taxIncluded"":true,""total"":12356.83},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":12240,""tax"":116.83,""taxIncluded"":true,""total"":12356.83},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":2937.6,""tax"":116.83,""taxIncluded"":true,""total"":3054.43},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":2937.6,""tax"":116.83,""taxIncluded"":true,""total"":3054.43}}}}]},""hasAvailability"":true,""blockedFromBooking"":false,""numberOfNights"":5,""gratuitiesRate"":72.5}],""minimumPriceSummary"":{""currency"":""USD"",""subtotal"":5752,""tax"":467.32,""taxIncluded"":true,""total"":6219.32},""portsOfCall"":[""Nassau, Bahamas"",""Disney Castaway Cay"",""Disney Castaway Cay""],""twoStopsItinerary"":true,""oneWayItinerary"":false}]","[{""image16x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-16x9.jpg?1679666138169"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-16x9.jpg?1679666138169""},""image32x9"":{""url"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-32x9.jpg?1679666138169"",""type"":""jpg"",""transcodeTemplate"":""https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-32x9.jpg?1679666138169""}}]","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/306620020-00.jpg?2022-09-08T21:17:18+00:00","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/306620020-00.jpg?2022-09-08T21:17:18+00:00","The city of Fort Lauderdale overlooking the water","","","","","","","","","","","","","","","","","","","","","","","","","" \ No newline at end of file diff --git a/products.json b/products.json new file mode 100644 index 0000000..bb72212 --- /dev/null +++ b/products.json @@ -0,0 +1,8513 @@ +{ + "totalPages": 3, + "exploreMoreTotalPages": 0, + "totalAvailableCruises": 33, + "hasAvailability": true, + "products": [ + { + "productId": "6_western_caribbean_galveston_san_juan", + "productName": "6-Night Western Caribbean Cruise from Galveston ending in San Juan", + "productDisplayName": "6-Night Western Caribbean Cruise from Galveston ending in San Juan", + "media": { + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/cozumel-mexico/cozumel-mexico-beach-snorkel-32x9.jpg?1670421500702", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/cozumel-mexico/cozumel-mexico-beach-snorkel-32x9.jpg?1670421500702", + "alt": "Snorkelers swim in front of a rocky shoreline with a large thatched hut and palm trees on it" + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/cozumel-mexico/cozumel-mexico-beach-snorkel-32x9.jpg?1670421500702", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/cozumel-mexico/cozumel-mexico-beach-snorkel-32x9.jpg?1670421500702", + "alt": "Snorkelers swim in front of a rocky shoreline with a large thatched hut and palm trees on it" + } + }, + "itineraries": [ + { + "itineraryId": "CZM,FMH,GEC,SJU", + "numberOfSailings": 1, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DM1563", + "packageId": "28684242", + "packageCode": "6RGJ", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 2929.92, + "tax": 638, + "taxIncluded": true, + "total": 3567.92 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 912, + "tax": 159.5, + "taxIncluded": true, + "total": 1071.5 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 912, + "tax": 159.5, + "taxIncluded": true, + "total": 1071.5 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 552.96, + "tax": 159.5, + "taxIncluded": true, + "total": 712.46 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 552.96, + "tax": 159.5, + "taxIncluded": true, + "total": 712.46 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3179.52, + "tax": 638, + "taxIncluded": true, + "total": 3817.52 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1008, + "tax": 159.5, + "taxIncluded": true, + "total": 1167.5 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1008, + "tax": 159.5, + "taxIncluded": true, + "total": 1167.5 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 581.76, + "tax": 159.5, + "taxIncluded": true, + "total": 741.26 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 581.76, + "tax": 159.5, + "taxIncluded": true, + "total": 741.26 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3861.12, + "tax": 638, + "taxIncluded": true, + "total": 4499.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1320, + "tax": 159.5, + "taxIncluded": true, + "total": 1479.5 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1320, + "tax": 159.5, + "taxIncluded": true, + "total": 1479.5 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 610.56, + "tax": 159.5, + "taxIncluded": true, + "total": 770.06 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 610.56, + "tax": 159.5, + "taxIncluded": true, + "total": 770.06 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7826.88, + "tax": 638, + "taxIncluded": true, + "total": 8464.88 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2940, + "tax": 159.5, + "taxIncluded": true, + "total": 3099.5 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2940, + "tax": 159.5, + "taxIncluded": true, + "total": 3099.5 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 973.44, + "tax": 159.5, + "taxIncluded": true, + "total": 1132.94 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 973.44, + "tax": 159.5, + "taxIncluded": true, + "total": 1132.94 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 6, + "gratuitiesRate": 87 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 2929.92, + "tax": 638, + "taxIncluded": true, + "total": 3567.92 + }, + "portsOfCall": [ + "Cozumel, Mexico", + "George Town, Grand Cayman", + "Falmouth, Jamaica", + "San Juan, Puerto Rico" + ], + "twoStopsItinerary": false, + "oneWayItinerary": true + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/san-juan/san-juan-adobeStock_256981147-16x9.jpg?1634249233004", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/san-juan/san-juan-adobeStock_256981147-16x9.jpg?1634249233004" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/san-juan/san-juan-adobeStock_256981147-32x9.jpg?1634249233004", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/san-juan/san-juan-adobeStock_256981147-32x9.jpg?1634249233004" + } + } + ] + } + }, + { + "productId": "5_eastern_caribbean_san_juan_fort_lauderdale", + "productName": "5-Night Eastern Caribbean Cruise from San Juan ending in Fort Lauderdale", + "productDisplayName": "5-Night Eastern Caribbean Cruise from San Juan ending in Fort Lauderdale", + "media": { + "headerSliver": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/wdpro-assets/dcl/finder/destinations/ports-of-call/tortola-british-virgin-islands/tortola-british-virgin-islands-00.jpg?1679566967314", + "type": "jpg", + "title": "Let the lush landscape and tropical climate of Tortola lull you into vacation mode.", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/ports-of-call/tortola-british-virgin-islands/tortola-british-virgin-islands-00.jpg?1679566967314", + "alt": "Flowers, palm trees and foliage border a bay" + }, + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/disney-cruise-line/ports/puerto-plata-dominican-republic/puerto-plata-beach-32x9.jpg?1679566967317", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/ports/puerto-plata-dominican-republic/puerto-plata-beach-32x9.jpg?1679566967317", + "alt": "A motorboat on the beach next to waterfront buildings" + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/disney-cruise-line/ports/puerto-plata-dominican-republic/puerto-plata-beach-32x9.jpg?1679566967317", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/ports/puerto-plata-dominican-republic/puerto-plata-beach-32x9.jpg?1679566967317", + "alt": "A motorboat on the beach next to waterfront buildings" + } + }, + "itineraries": [ + { + "itineraryId": "GOC,NAS,PEF,STT", + "numberOfSailings": 1, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DM1566", + "packageId": "28808718", + "packageCode": "5SJPE", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3120.8, + "tax": 459, + "taxIncluded": true, + "total": 3579.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 970, + "tax": 114.75, + "taxIncluded": true, + "total": 1084.75 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 970, + "tax": 114.75, + "taxIncluded": true, + "total": 1084.75 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 590.4, + "tax": 114.75, + "taxIncluded": true, + "total": 705.15 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 590.4, + "tax": 114.75, + "taxIncluded": true, + "total": 705.15 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3258.8, + "tax": 459, + "taxIncluded": true, + "total": 3717.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1015, + "tax": 114.75, + "taxIncluded": true, + "total": 1129.75 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1015, + "tax": 114.75, + "taxIncluded": true, + "total": 1129.75 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 614.4, + "tax": 114.75, + "taxIncluded": true, + "total": 729.15 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 614.4, + "tax": 114.75, + "taxIncluded": true, + "total": 729.15 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3926.8, + "tax": 459, + "taxIncluded": true, + "total": 4385.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1325, + "tax": 114.75, + "taxIncluded": true, + "total": 1439.75 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1325, + "tax": 114.75, + "taxIncluded": true, + "total": 1439.75 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 638.4, + "tax": 114.75, + "taxIncluded": true, + "total": 753.15 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 638.4, + "tax": 114.75, + "taxIncluded": true, + "total": 753.15 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7583.6, + "tax": 459, + "taxIncluded": true, + "total": 8042.6 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2875, + "tax": 114.75, + "taxIncluded": true, + "total": 2989.75 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2875, + "tax": 114.75, + "taxIncluded": true, + "total": 2989.75 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 916.8, + "tax": 114.75, + "taxIncluded": true, + "total": 1031.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 916.8, + "tax": 114.75, + "taxIncluded": true, + "total": 1031.55 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 3120.8, + "tax": 459, + "taxIncluded": true, + "total": 3579.8 + }, + "portsOfCall": [ + "St. Thomas, U.S. Virgin Islands", + "Nassau, Bahamas", + "Disney Castaway Cay", + "Fort Lauderdale, Florida" + ], + "twoStopsItinerary": false, + "oneWayItinerary": true + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/vision-dam/digital/parks-platform/parks-global-assets/stock/ft-lauderdale-fl/306620020-16x9.jpg?2022-07-05T17:29:09+00:00", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/stock/ft-lauderdale-fl/306620020-16x9.jpg?2022-07-05T17:29:09+00:00", + "alt": "The city of Fort Lauderdale overlooking the water" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/vision-dam/digital/parks-platform/parks-global-assets/stock/ft-lauderdale-fl/306620020-32X9.jpg?2022-07-05T17:29:09+00:00", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/stock/ft-lauderdale-fl/306620020-32X9.jpg?2022-07-05T17:29:09+00:00", + "alt": "The city of Fort Lauderdale overlooking the water" + } + } + ] + } + }, + { + "productId": "5_western_caribbean_galveston", + "productName": "5-Night Western Caribbean Cruise from Galveston", + "productDisplayName": "5-Night Western Caribbean Cruise from Galveston", + "media": { + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/falmouth-jamaica/falmouth-jamaica-jewel-all-inclusive-beach-break32x9.jpg?1670421401113", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/falmouth-jamaica/falmouth-jamaica-jewel-all-inclusive-beach-break32x9.jpg?1670421401113", + "alt": "Watercraft on the ocean by a beach featuring buildings, palm trees and hills in the distance" + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/falmouth-jamaica/falmouth-jamaica-jewel-all-inclusive-beach-break32x9.jpg?1670421401113", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/falmouth-jamaica/falmouth-jamaica-jewel-all-inclusive-beach-break32x9.jpg?1670421401113", + "alt": "Watercraft on the ocean by a beach featuring buildings, palm trees and hills in the distance" + } + }, + "itineraries": [ + { + "itineraryId": "CZM,PGO", + "numberOfSailings": 4, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DM1544", + "packageId": "28672674", + "packageCode": "5SG", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3168.4, + "tax": 520.6, + "taxIncluded": true, + "total": 3689 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 965, + "tax": 130.15, + "taxIncluded": true, + "total": 1095.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 965, + "tax": 130.15, + "taxIncluded": true, + "total": 1095.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 619.2, + "tax": 130.15, + "taxIncluded": true, + "total": 749.35 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 619.2, + "tax": 130.15, + "taxIncluded": true, + "total": 749.35 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3446.4, + "tax": 520.6, + "taxIncluded": true, + "total": 3967 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1080, + "tax": 130.15, + "taxIncluded": true, + "total": 1210.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1080, + "tax": 130.15, + "taxIncluded": true, + "total": 1210.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 643.2, + "tax": 130.15, + "taxIncluded": true, + "total": 773.35 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 643.2, + "tax": 130.15, + "taxIncluded": true, + "total": 773.35 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3874.4, + "tax": 520.6, + "taxIncluded": true, + "total": 4395 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1270, + "tax": 130.15, + "taxIncluded": true, + "total": 1400.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1270, + "tax": 130.15, + "taxIncluded": true, + "total": 1400.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 667.2, + "tax": 130.15, + "taxIncluded": true, + "total": 797.35 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 667.2, + "tax": 130.15, + "taxIncluded": true, + "total": 797.35 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 6412.8, + "tax": 520.6, + "taxIncluded": true, + "total": 6933.4 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2400, + "tax": 130.15, + "taxIncluded": true, + "total": 2530.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2400, + "tax": 130.15, + "taxIncluded": true, + "total": 2530.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 806.4, + "tax": 130.15, + "taxIncluded": true, + "total": 936.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 806.4, + "tax": 130.15, + "taxIncluded": true, + "total": 936.55 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 3168.4, + "tax": 520.6, + "taxIncluded": true, + "total": 3689 + }, + "portsOfCall": [ + "Cozumel, Mexico", + "Progreso, Mexico" + ], + "twoStopsItinerary": false, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-01-16x9.jpg?1676927094102", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-01-16x9.jpg?1676927094102", + "alt": "Palm trees sway in the wind while children play on a jungle gym on a beach in Progreso, Mexico" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-01-32x9.jpg?1676927094102", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-01-32x9.jpg?1676927094102", + "alt": "Palm trees sway in the wind while children play on a jungle gym on a beach in Progreso, Mexico" + } + } + ] + } + }, + { + "productId": "5_western_caribbean_new_orleans", + "productName": "5-Night Western Caribbean Cruise from New Orleans", + "productDisplayName": "5-Night Western Caribbean Cruise from New Orleans", + "media": { + "headerSliver": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/disney-cruise-line/ports/progreso-mexico/plaza-mayor-de-merida-progreso-00.jpg?1670421410973", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/ports/progreso-mexico/plaza-mayor-de-merida-progreso-00.jpg?1670421410973", + "alt": "" + }, + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/disney-cruise-line/ports/progreso-mexico/plaza-mayor-de-merida-progreso-mexico-32x9.jpg?1670421410973", + "type": "jpg", + "title": "Visit the beautiful Plaza Mayor where vendors sell everything from food to crafts to souvenirs. It's also lined with a number of cafés to enjoy. ", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/ports/progreso-mexico/plaza-mayor-de-merida-progreso-mexico-32x9.jpg?1670421410973", + "alt": "Plaza Mayor, an outdoor shopping area with tall palm trees, historic Spanish buildings and people sitting at shaded café tables. " + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/disney-cruise-line/ports/progreso-mexico/plaza-mayor-de-merida-progreso-mexico-32x9.jpg?1670421410973", + "type": "jpg", + "title": "Visit the beautiful Plaza Mayor where vendors sell everything from food to crafts to souvenirs. It's also lined with a number of cafés to enjoy. ", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/ports/progreso-mexico/plaza-mayor-de-merida-progreso-mexico-32x9.jpg?1670421410973", + "alt": "Plaza Mayor, an outdoor shopping area with tall palm trees, historic Spanish buildings and people sitting at shaded café tables. " + } + }, + "itineraries": [ + { + "itineraryId": "CZM,PGO", + "numberOfSailings": 3, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DM1548", + "packageId": "28672678", + "packageCode": "5SY", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3198.4, + "tax": 514.88, + "taxIncluded": true, + "total": 3713.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 980, + "tax": 128.72, + "taxIncluded": true, + "total": 1108.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 980, + "tax": 128.72, + "taxIncluded": true, + "total": 1108.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 619.2, + "tax": 128.72, + "taxIncluded": true, + "total": 747.92 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 619.2, + "tax": 128.72, + "taxIncluded": true, + "total": 747.92 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3586.4, + "tax": 514.88, + "taxIncluded": true, + "total": 4101.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1150, + "tax": 128.72, + "taxIncluded": true, + "total": 1278.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1150, + "tax": 128.72, + "taxIncluded": true, + "total": 1278.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 643.2, + "tax": 128.72, + "taxIncluded": true, + "total": 771.92 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 643.2, + "tax": 128.72, + "taxIncluded": true, + "total": 771.92 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3994.4, + "tax": 514.88, + "taxIncluded": true, + "total": 4509.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1330, + "tax": 128.72, + "taxIncluded": true, + "total": 1458.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1330, + "tax": 128.72, + "taxIncluded": true, + "total": 1458.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 667.2, + "tax": 128.72, + "taxIncluded": true, + "total": 795.92 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 667.2, + "tax": 128.72, + "taxIncluded": true, + "total": 795.92 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 6590.8, + "tax": 514.88, + "taxIncluded": true, + "total": 7105.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2465, + "tax": 128.72, + "taxIncluded": true, + "total": 2593.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2465, + "tax": 128.72, + "taxIncluded": true, + "total": 2593.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 830.4, + "tax": 128.72, + "taxIncluded": true, + "total": 959.12 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 830.4, + "tax": 128.72, + "taxIncluded": true, + "total": 959.12 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 3198.4, + "tax": 514.88, + "taxIncluded": true, + "total": 3713.28 + }, + "portsOfCall": [ + "Cozumel, Mexico", + "Progreso, Mexico" + ], + "twoStopsItinerary": false, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-02-16x9.jpg?1676927094102", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-02-16x9.jpg?1676927094102", + "alt": "The sun sets into the ocean behind one of the longest piers in the world as beachgoers look on" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-02-32x9.jpg?1676927094102", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/progreso-mexico/progreso-mexico-02-32x9.jpg?1676927094102", + "alt": "The sun sets into the ocean behind one of the longest piers in the world as beachgoers look on" + } + } + ] + } + }, + { + "productId": "5_western_caribbean_miami_halloween", + "productName": "5-Night Halloween on the High Seas Western Caribbean Cruise from Miami", + "productDisplayName": "5-Night Western Caribbean Cruise from Miami", + "media": {}, + "itineraries": [ + { + "itineraryId": "GEC,GOC", + "numberOfSailings": 1, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DM1523", + "packageId": "28000028", + "packageCode": "5SI", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11A", + "stateroomCategoryContentId": "DM-11A", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3700, + "tax": 515.24, + "taxIncluded": true, + "total": 4215.24 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1140, + "tax": 128.81, + "taxIncluded": true, + "total": 1268.81 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1140, + "tax": 128.81, + "taxIncluded": true, + "total": 1268.81 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 710, + "tax": 128.81, + "taxIncluded": true, + "total": 838.81 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 710, + "tax": 128.81, + "taxIncluded": true, + "total": 838.81 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DM-09C", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3970, + "tax": 515.24, + "taxIncluded": true, + "total": 4485.24 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1250, + "tax": 128.81, + "taxIncluded": true, + "total": 1378.81 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1250, + "tax": 128.81, + "taxIncluded": true, + "total": 1378.81 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 735, + "tax": 128.81, + "taxIncluded": true, + "total": 863.81 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 735, + "tax": 128.81, + "taxIncluded": true, + "total": 863.81 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEFAMILY", + "stateroomCategory": "04E", + "stateroomCategoryContentId": "DM-04E", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEFAMILY", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5670, + "tax": 515.24, + "taxIncluded": true, + "total": 6185.24 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2045, + "tax": 128.81, + "taxIncluded": true, + "total": 2173.81 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2045, + "tax": 128.81, + "taxIncluded": true, + "total": 2173.81 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 790, + "tax": 128.81, + "taxIncluded": true, + "total": 918.81 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 790, + "tax": 128.81, + "taxIncluded": true, + "total": 918.81 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7800, + "tax": 515.24, + "taxIncluded": true, + "total": 8315.24 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2925, + "tax": 128.81, + "taxIncluded": true, + "total": 3053.81 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2925, + "tax": 128.81, + "taxIncluded": true, + "total": 3053.81 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 975, + "tax": 128.81, + "taxIncluded": true, + "total": 1103.81 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 975, + "tax": 128.81, + "taxIncluded": true, + "total": 1103.81 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 3700, + "tax": 515.24, + "taxIncluded": true, + "total": 4215.24 + }, + "portsOfCall": [ + "George Town, Grand Cayman", + "Disney Castaway Cay" + ], + "twoStopsItinerary": false, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-16x9.jpg?1679666138169", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-16x9.jpg?1679666138169" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-32x9.jpg?1679666138169", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-32x9.jpg?1679666138169" + } + }, + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-16x9.jpg?1667226141146", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-16x9.jpg?1667226141146", + "alt": "The Admiral Donald Duck statue in front of a decorative tree with hanging pumpkins" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-32x9.jpg?1667226141146", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-32x9.jpg?1667226141146", + "alt": "The Admiral Donald Duck statue in front of a decorative tree with hanging pumpkins" + } + } + ], + "themeData": { + "id": "SPOOKY", + "media": { + "bannerIcon": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Icon-HHS.svg?1667226141145", + "type": "svg", + "alt": "An icon illustration of a Mickey Mouse pumpkin head" + }, + "themePizzazzDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Desktop-HHS.svg?1667226141145", + "type": "svg", + "alt": "An icon illustration of 3 bats in front of a moon with 2 stars" + }, + "themePizzazzMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Mobile-HHS.svg?1667226141145", + "type": "svg", + "alt": "An icon illustration of a bat amid 3 stars" + } + }, + "bannerData": { + "bannerHeader": "Halloween on the High Seas", + "bannerColorInit": "#539659", + "bannerColorEnd": "#2B6B30", + "gradientInit": "8%", + "gradientEnd": "58%" + } + } + } + }, + { + "productId": "5_bahamian_miami_dd_halloween", + "productName": "5-Night Halloween on the High Seas Bahamian Cruise from Miami with 2 Stops at Castaway Cay", + "productDisplayName": "5-Night Bahamian Cruise from Miami with 2 Stops at Castaway Cay", + "media": { + "headerSliver": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/disney-cruise-line/cruise-products/miami/miami-adobestock_291616174-16x9.jpg?1658435320087", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/miami/miami-adobestock_291616174-16x9.jpg?1658435320087", + "alt": "Miami Beach's Ocean Drive hotels, restaurants and palm trees at sunset" + }, + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-32x9.jpg?1631137793769", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-32x9.jpg?1631137793769", + "alt": "Boats docked in a harbor in front of colorful multi story houses in Nassau in The Bahamas" + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-32x9.jpg?1631137793769", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-32x9.jpg?1631137793769", + "alt": "Boats docked in a harbor in front of colorful multi story houses in Nassau in The Bahamas" + } + }, + "itineraries": [ + { + "itineraryId": "GOC,NAS", + "numberOfSailings": 1, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DM1522", + "packageId": "28000027", + "packageCode": "5SI", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3770, + "tax": 481.96, + "taxIncluded": true, + "total": 4251.96 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1165, + "tax": 120.49, + "taxIncluded": true, + "total": 1285.49 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1165, + "tax": 120.49, + "taxIncluded": true, + "total": 1285.49 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 120.49, + "taxIncluded": true, + "total": 840.49 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 120.49, + "taxIncluded": true, + "total": 840.49 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DM-09C", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4160, + "tax": 481.96, + "taxIncluded": true, + "total": 4641.96 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1340, + "tax": 120.49, + "taxIncluded": true, + "total": 1460.49 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1340, + "tax": 120.49, + "taxIncluded": true, + "total": 1460.49 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 740, + "tax": 120.49, + "taxIncluded": true, + "total": 860.49 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 740, + "tax": 120.49, + "taxIncluded": true, + "total": 860.49 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "05B", + "stateroomCategoryContentId": "DM-05B", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5240, + "tax": 481.96, + "taxIncluded": true, + "total": 5721.96 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1855, + "tax": 120.49, + "taxIncluded": true, + "total": 1975.49 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1855, + "tax": 120.49, + "taxIncluded": true, + "total": 1975.49 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 765, + "tax": 120.49, + "taxIncluded": true, + "total": 885.49 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 765, + "tax": 120.49, + "taxIncluded": true, + "total": 885.49 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 8000, + "tax": 481.96, + "taxIncluded": true, + "total": 8481.96 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3000, + "tax": 120.49, + "taxIncluded": true, + "total": 3120.49 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3000, + "tax": 120.49, + "taxIncluded": true, + "total": 3120.49 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1000, + "tax": 120.49, + "taxIncluded": true, + "total": 1120.49 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1000, + "tax": 120.49, + "taxIncluded": true, + "total": 1120.49 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 3770, + "tax": 481.96, + "taxIncluded": true, + "total": 4251.96 + }, + "portsOfCall": [ + "Disney Castaway Cay", + "Nassau, Bahamas", + "Disney Castaway Cay" + ], + "twoStopsItinerary": true, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-16x9.jpg?1631137793768", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-16x9.jpg?1631137793768", + "alt": "Boats docked in a harbor in front of colorful multi story houses in Nassau in The Bahamas" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-32x9.jpg?1631137793769", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/nassau/nassau-01-32x9.jpg?1631137793769", + "alt": "Boats docked in a harbor in front of colorful multi story houses in Nassau in The Bahamas" + } + }, + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-02-16x9.jpg?1667226141147", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-02-16x9.jpg?1667226141147", + "alt": "Three illuminated and decorative Mickey Mouse pumpkins in front of an illuminated Disney Cruise Line logo on the ship" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-02-32x9.jpg?1667226141147", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-02-32x9.jpg?1667226141147", + "alt": "Three illuminated and decorative Mickey Mouse pumpkins in front of an illuminated Disney Cruise Line logo on the ship" + } + } + ], + "themeData": { + "id": "SPOOKY", + "media": { + "bannerIcon": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Icon-HHS.svg?1667226141145", + "type": "svg", + "alt": "An icon illustration of a Mickey Mouse pumpkin head" + }, + "themePizzazzDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Desktop-HHS.svg?1667226141145", + "type": "svg", + "alt": "An icon illustration of 3 bats in front of a moon with 2 stars" + }, + "themePizzazzMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Mobile-HHS.svg?1667226141145", + "type": "svg", + "alt": "An icon illustration of a bat amid 3 stars" + } + }, + "bannerData": { + "bannerHeader": "Halloween on the High Seas", + "bannerColorInit": "#539659", + "bannerColorEnd": "#2B6B30", + "gradientInit": "8%", + "gradientEnd": "58%" + } + } + } + }, + { + "productId": "5_western_caribbean_fort_lauderdale_marvel", + "productName": "5-Night Western Caribbean Cruise from Fort Lauderdale with Marvel Day at Sea", + "productDisplayName": "5-Night Western Caribbean Cruise from Fort Lauderdale", + "media": { + "headerSliver": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-16x9.jpg?1675699007729", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-16x9.jpg?1675699007729", + "alt": "Iron Man, with an arm outstretched, ready to do battle" + }, + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733", + "alt": "Iron Man, with an arm outstretched, ready to do battle" + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733", + "alt": "Iron Man, with an arm outstretched, ready to do battle" + } + }, + "itineraries": [ + { + "itineraryId": "GEC,GOC", + "numberOfSailings": 5, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DD1314", + "packageId": "28656407", + "packageCode": "5PEF", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3750, + "tax": 502.28, + "taxIncluded": true, + "total": 4252.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1155, + "tax": 125.57, + "taxIncluded": true, + "total": 1280.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1155, + "tax": 125.57, + "taxIncluded": true, + "total": 1280.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DD-09D", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3920, + "tax": 502.28, + "taxIncluded": true, + "total": 4422.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1240, + "tax": 125.57, + "taxIncluded": true, + "total": 1365.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1240, + "tax": 125.57, + "taxIncluded": true, + "total": 1365.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06B", + "stateroomCategoryContentId": "DD-06B", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4250, + "tax": 502.28, + "taxIncluded": true, + "total": 4752.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1405, + "tax": 125.57, + "taxIncluded": true, + "total": 1530.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1405, + "tax": 125.57, + "taxIncluded": true, + "total": 1530.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 8056.8, + "tax": 502.28, + "taxIncluded": true, + "total": 8559.08 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2910, + "tax": 125.57, + "taxIncluded": true, + "total": 3035.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2910, + "tax": 125.57, + "taxIncluded": true, + "total": 3035.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1118.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1243.97 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1118.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1243.97 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 3750, + "tax": 502.28, + "taxIncluded": true, + "total": 4252.28 + }, + "portsOfCall": [ + "George Town, Grand Cayman", + "Disney Castaway Cay" + ], + "twoStopsItinerary": false, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-06-16x9.jpg?1679666138169", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-06-16x9.jpg?1679666138169", + "alt": "A Disney Cruise Line ship docked at a beach in Castaway Cay" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-06-32x9.jpg?1679666138169", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-06-32x9.jpg?1679666138169", + "alt": "A Disney Cruise Line ship docked at a beach in Castaway Cay" + } + }, + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-16x9.jpg?1671651280261", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-16x9.jpg?1671651280261", + "alt": "Iron Man, with an arm outstretched, ready to do battle" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1671651280261", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1671651280261", + "alt": "Iron Man, with an arm outstretched, ready to do battle" + } + } + ], + "themeData": { + "id": "MDAS", + "media": { + "bannerIcon": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Icon-Marvel.svg?1671651280260", + "type": "svg", + "alt": "A circular icon illustration featuring half of the face of Spider Man joined with half of the shield of Captain America" + }, + "themePizzazzDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Desktop-Marvel.svg?1671651280260", + "type": "svg", + "alt": "An icon illustration featuring the hammer of Thor in flight with thunderbolts" + }, + "themePizzazzMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Mobile-Marvel.svg?1671651280260", + "type": "svg", + "alt": "An icon illustration featuring the hammer of Thor in flight with thunderbolts" + } + }, + "bannerData": { + "bannerHeader": "Marvel Day at Sea", + "bannerColorInit": "#0079BC", + "bannerColorEnd": "#00588A", + "gradientInit": "45%", + "gradientEnd": "84%" + } + } + } + }, + { + "productId": "5_western_caribbean_fort_lauderdale_marvel", + "productName": "5-Night Western Caribbean Cruise from Fort Lauderdale with Marvel Day at Sea", + "productDisplayName": "5-Night Western Caribbean Cruise from Fort Lauderdale", + "media": { + "headerSliver": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-16x9.jpg?1675699007729", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-16x9.jpg?1675699007729", + "alt": "Iron Man, with an arm outstretched, ready to do battle" + }, + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733", + "alt": "Iron Man, with an arm outstretched, ready to do battle" + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-01-32x9.jpg?1675699007733", + "alt": "Iron Man, with an arm outstretched, ready to do battle" + } + }, + "itineraries": [ + { + "itineraryId": "CZM,GOC", + "numberOfSailings": 5, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DD1312", + "packageId": "28656405", + "packageCode": "5PEF", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3750, + "tax": 592.12, + "taxIncluded": true, + "total": 4342.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1155, + "tax": 148.03, + "taxIncluded": true, + "total": 1303.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1155, + "tax": 148.03, + "taxIncluded": true, + "total": 1303.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DD-09D", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3920, + "tax": 592.12, + "taxIncluded": true, + "total": 4512.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1240, + "tax": 148.03, + "taxIncluded": true, + "total": 1388.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1240, + "tax": 148.03, + "taxIncluded": true, + "total": 1388.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06B", + "stateroomCategoryContentId": "DD-06B", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4250, + "tax": 592.12, + "taxIncluded": true, + "total": 4842.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1405, + "tax": 148.03, + "taxIncluded": true, + "total": 1553.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1405, + "tax": 148.03, + "taxIncluded": true, + "total": 1553.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7997.6, + "tax": 592.12, + "taxIncluded": true, + "total": 8589.72 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2890, + "tax": 148.03, + "taxIncluded": true, + "total": 3038.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2890, + "tax": 148.03, + "taxIncluded": true, + "total": 3038.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1108.8, + "tax": 148.03, + "taxIncluded": true, + "total": 1256.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1108.8, + "tax": 148.03, + "taxIncluded": true, + "total": 1256.83 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 3750, + "tax": 592.12, + "taxIncluded": true, + "total": 4342.12 + }, + "portsOfCall": [ + "Cozumel, Mexico", + "Disney Castaway Cay" + ], + "twoStopsItinerary": false, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-03-16x9.jpg?1679666138167", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-03-16x9.jpg?1679666138167", + "alt": "A family of 4 pets stingrays on Disney Castaway Cay with a Disney ship in the background" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-03-32x9.jpg?1679666138167", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-03-32x9.jpg?1679666138167", + "alt": "A family of 4 pets stingrays on Disney Castaway Cay with a Disney ship in the background" + } + }, + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-00-16x9.jpg?1671651280261", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-00-16x9.jpg?1671651280261", + "alt": "Thor, with hammer in hand, strikes a pose in front of a Disney Cruise Line ship funnel" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-00-32x9.jpg?1671651280261", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/marvel-day-at-sea/marvel-00-32x9.jpg?1671651280261", + "alt": "Thor, with hammer in hand, strikes a pose in front of a Disney Cruise Line ship funnel" + } + } + ], + "themeData": { + "id": "MDAS", + "media": { + "bannerIcon": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Icon-Marvel.svg?1671651280260", + "type": "svg", + "alt": "A circular icon illustration featuring half of the face of Spider Man joined with half of the shield of Captain America" + }, + "themePizzazzDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Desktop-Marvel.svg?1671651280260", + "type": "svg", + "alt": "An icon illustration featuring the hammer of Thor in flight with thunderbolts" + }, + "themePizzazzMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Mobile-Marvel.svg?1671651280260", + "type": "svg", + "alt": "An icon illustration featuring the hammer of Thor in flight with thunderbolts" + } + }, + "bannerData": { + "bannerHeader": "Marvel Day at Sea", + "bannerColorInit": "#0079BC", + "bannerColorEnd": "#00588A", + "gradientInit": "45%", + "gradientEnd": "84%" + } + } + } + }, + { + "productId": "5_western_fort_lauderdale", + "productName": "5-Night Western Caribbean Cruise from Fort Lauderdale", + "productDisplayName": "5-Night Western Caribbean Cruise from Fort Lauderdale", + "media": { + "headerSliver": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-00.jpg?2022-09-08T21:17:18+00:00", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-00.jpg?2022-09-08T21:17:18+00:00", + "alt": "A beach and boardwalk in Fort Lauderdale at sunset" + }, + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00", + "alt": "A beach and boardwalk in Fort Lauderdale at sunset" + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00", + "alt": "A beach and boardwalk in Fort Lauderdale at sunset" + } + }, + "itineraries": [ + { + "itineraryId": "GEC,GOC", + "numberOfSailings": 3, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DD1336", + "packageId": "28656579", + "packageCode": "5PEF", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3960, + "tax": 502.28, + "taxIncluded": true, + "total": 4462.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1260, + "tax": 125.57, + "taxIncluded": true, + "total": 1385.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1260, + "tax": 125.57, + "taxIncluded": true, + "total": 1385.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09B", + "stateroomCategoryContentId": "DD-09B", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4190, + "tax": 502.28, + "taxIncluded": true, + "total": 4692.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1375, + "tax": 125.57, + "taxIncluded": true, + "total": 1500.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1375, + "tax": 125.57, + "taxIncluded": true, + "total": 1500.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06B", + "stateroomCategoryContentId": "DD-06B", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4460, + "tax": 502.28, + "taxIncluded": true, + "total": 4962.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1510, + "tax": 125.57, + "taxIncluded": true, + "total": 1635.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1510, + "tax": 125.57, + "taxIncluded": true, + "total": 1635.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 8452.4, + "tax": 502.28, + "taxIncluded": true, + "total": 8954.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3055, + "tax": 125.57, + "taxIncluded": true, + "total": 3180.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3055, + "tax": 125.57, + "taxIncluded": true, + "total": 3180.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1171.2, + "tax": 125.57, + "taxIncluded": true, + "total": 1296.77 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1171.2, + "tax": 125.57, + "taxIncluded": true, + "total": 1296.77 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 3960, + "tax": 502.28, + "taxIncluded": true, + "total": 4462.28 + }, + "portsOfCall": [ + "George Town, Grand Cayman", + "Disney Castaway Cay" + ], + "twoStopsItinerary": false, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/george-town-grand-cayman/george-town-grand-cayman-00-16x9.jpg?1634249196677", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/george-town-grand-cayman/george-town-grand-cayman-00-16x9.jpg?1634249196677", + "alt": "An aerial view of George Town in Grand Cayman surrounded by the Caribbean Sea" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/george-town-grand-cayman/george-town-grand-cayman-00-32x9.jpg?1634249196677", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/george-town-grand-cayman/george-town-grand-cayman-00-32x9.jpg?1634249196677", + "alt": "An aerial view of George Town in Grand Cayman surrounded by the Caribbean Sea" + } + } + ] + } + }, + { + "productId": "5_bermuda_new_york", + "productName": "5-Night Bermuda Cruise from New York", + "productDisplayName": "5-Night Bermuda Cruise from New York", + "media": { + "cruiseDetailsDesktopItinerary": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/400/75/dam/wdpro-assets/dcl/cruises-destinations/itineraries/bermuda-00-2.4x1.jpg?1680708557248", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/cruises-destinations/itineraries/bermuda-00-2.4x1.jpg?1680708557248", + "alt": "" + }, + "cruiseDetailsMobileItinerary": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/156/75/dam/wdpro-assets/dcl/cruises-destinations/itineraries/bermuda-00-2.4x1.jpg?1680708557248", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/cruises-destinations/itineraries/bermuda-00-2.4x1.jpg?1680708557248", + "alt": "" + } + }, + "itineraries": [ + { + "itineraryId": "KWF", + "numberOfSailings": 1, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DD1290", + "packageId": "28387281", + "packageCode": "5SN", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3953.6, + "tax": 933.72, + "taxIncluded": true, + "total": 4887.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1300, + "tax": 233.43, + "taxIncluded": true, + "total": 1533.43 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1300, + "tax": 233.43, + "taxIncluded": true, + "total": 1533.43 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 233.43, + "taxIncluded": true, + "total": 910.23 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 233.43, + "taxIncluded": true, + "total": 910.23 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09B", + "stateroomCategoryContentId": "DD-09B", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4063.6, + "tax": 933.72, + "taxIncluded": true, + "total": 4997.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1355, + "tax": 233.43, + "taxIncluded": true, + "total": 1588.43 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1355, + "tax": 233.43, + "taxIncluded": true, + "total": 1588.43 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 233.43, + "taxIncluded": true, + "total": 910.23 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 233.43, + "taxIncluded": true, + "total": 910.23 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "05C", + "stateroomCategoryContentId": "DD-05C", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4373.6, + "tax": 933.72, + "taxIncluded": true, + "total": 5307.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1510, + "tax": 233.43, + "taxIncluded": true, + "total": 1743.43 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1510, + "tax": 233.43, + "taxIncluded": true, + "total": 1743.43 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 233.43, + "taxIncluded": true, + "total": 910.23 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 233.43, + "taxIncluded": true, + "total": 910.23 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-ONE-BEDROOM", + "stateroomCategory": "02B", + "stateroomCategoryContentId": "DD-02B", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-ONE-BEDROOM", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 11974.4, + "tax": 933.72, + "taxIncluded": true, + "total": 12908.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 4480, + "tax": 233.43, + "taxIncluded": true, + "total": 4713.43 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 4480, + "tax": 233.43, + "taxIncluded": true, + "total": 4713.43 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1507.2, + "tax": 233.43, + "taxIncluded": true, + "total": 1740.63 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1507.2, + "tax": 233.43, + "taxIncluded": true, + "total": 1740.63 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 3953.6, + "tax": 933.72, + "taxIncluded": true, + "total": 4887.32 + }, + "portsOfCall": [ + "King's Wharf, Bermuda", + "King's Wharf, Bermuda" + ], + "twoStopsItinerary": false, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-01-16x9.jpg?1617746716939", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-01-16x9.jpg?1617746716939", + "alt": "Colorful houses on a hillside overlook the ocean in Bermuda" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-01-32x9.jpg?1617746716939", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-01-32x9.jpg?1617746716939", + "alt": "Colorful houses on a hillside overlook the ocean in Bermuda" + } + } + ] + } + }, + { + "productId": "6_western_caribbean_port_canaveral_halloween", + "productName": "6-Night Halloween on the High Seas Western Caribbean Cruise from Port Canaveral", + "productDisplayName": "6-Night Western Caribbean Cruise from Port Canaveral", + "media": { + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1617775095719", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1617775095719", + "alt": "Dressed in Halloween attire, Mickey Mouse and Minnie Mouse perform aboard a Disney cruise" + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1617775095719", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1617775095719", + "alt": "Dressed in Halloween attire, Mickey Mouse and Minnie Mouse perform aboard a Disney cruise" + } + }, + "itineraries": [ + { + "itineraryId": "CZM,GEC,GOC", + "numberOfSailings": 1, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DF0637", + "packageId": "27143817", + "packageCode": "6S", + "ship": { + "id": "3143;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Fantasy", + "seawareId": "DF", + "stateroomTypes": { + "DF-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DF-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/verandah/DDDF-Verandah-00-full.jpg?1598963594363", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/verandah/DDDF-Verandah-00-full.jpg?1598963594363", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Fantasy" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DF-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DF-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/oceanview/DDDF-Oceanview-00-full.jpg?1590003311203", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/oceanview/DDDF-Oceanview-00-full.jpg?1590003311203", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311204", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311204", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311205", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311205", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Fantasy" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DF-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DF-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/inside/DDDF-Inside-00-full.jpg?1598963565554", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/inside/DDDF-Inside-00-full.jpg?1598963565554", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters!
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters!" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Fantasy" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DF-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DF-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/concierge/DDDF-Concierge-00-full.jpg?1598963518060", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/concierge/DDDF-Concierge-00-full.jpg?1598963518060", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Fantasy" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DF-INSIDE", + "stateroomSubType": "DF-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DF-11B", + "stateroomSubTypeContentId": "DF-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4380, + "tax": 514.2, + "taxIncluded": true, + "total": 4894.2 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1380, + "tax": 128.55, + "taxIncluded": true, + "total": 1508.55 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1380, + "tax": 128.55, + "taxIncluded": true, + "total": 1508.55 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 810, + "tax": 128.55, + "taxIncluded": true, + "total": 938.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 810, + "tax": 128.55, + "taxIncluded": true, + "total": 938.55 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DF-OUTSIDE", + "stateroomSubType": "DF-OUTSIDE-DELUXE", + "stateroomCategory": "09B", + "stateroomCategoryContentId": "DF-09B", + "stateroomSubTypeContentId": "DF-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4560, + "tax": 514.2, + "taxIncluded": true, + "total": 5074.2 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1470, + "tax": 128.55, + "taxIncluded": true, + "total": 1598.55 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1470, + "tax": 128.55, + "taxIncluded": true, + "total": 1598.55 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 810, + "tax": 128.55, + "taxIncluded": true, + "total": 938.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 810, + "tax": 128.55, + "taxIncluded": true, + "total": 938.55 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DF-VERANDAH", + "stateroomSubType": "DF-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06B", + "stateroomCategoryContentId": "DF-06B", + "stateroomSubTypeContentId": "DF-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4920, + "tax": 514.2, + "taxIncluded": true, + "total": 5434.2 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1650, + "tax": 128.55, + "taxIncluded": true, + "total": 1778.55 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1650, + "tax": 128.55, + "taxIncluded": true, + "total": 1778.55 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 810, + "tax": 128.55, + "taxIncluded": true, + "total": 938.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 810, + "tax": 128.55, + "taxIncluded": true, + "total": 938.55 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DF-SUITE", + "stateroomSubType": "DF-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DF-03A", + "stateroomSubTypeContentId": "DF-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 9036, + "tax": 514.2, + "taxIncluded": true, + "total": 9550.2 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3306, + "tax": 128.55, + "taxIncluded": true, + "total": 3434.55 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3306, + "tax": 128.55, + "taxIncluded": true, + "total": 3434.55 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1212, + "tax": 128.55, + "taxIncluded": true, + "total": 1340.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1212, + "tax": 128.55, + "taxIncluded": true, + "total": 1340.55 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 6, + "gratuitiesRate": 87 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 4380, + "tax": 514.2, + "taxIncluded": true, + "total": 4894.2 + }, + "portsOfCall": [ + "Cozumel, Mexico", + "George Town, Grand Cayman", + "Disney Castaway Cay" + ], + "twoStopsItinerary": false, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-04-16x9.jpg?1679666138167", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-04-16x9.jpg?1679666138167" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-04-32x9.jpg?1679666138167", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-04-32x9.jpg?1679666138167" + } + }, + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-00-16x9.jpg?1667226141145", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-00-16x9.jpg?1667226141145", + "alt": "A decorative pumpkin carved in the shape of Minnie Mouse's head" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-00-32x9.jpg?1667226141146", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-00-32x9.jpg?1667226141146", + "alt": "A decorative pumpkin carved in the shape of Minnie Mouse's head" + } + } + ], + "themeData": { + "id": "SPOOKY", + "media": { + "bannerIcon": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Icon-HHS.svg?1667226141145", + "type": "svg", + "alt": "An icon illustration of a Mickey Mouse pumpkin head" + }, + "themePizzazzDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Desktop-HHS.svg?1667226141145", + "type": "svg", + "alt": "An icon illustration of 3 bats in front of a moon with 2 stars" + }, + "themePizzazzMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Mobile-HHS.svg?1667226141145", + "type": "svg", + "alt": "An icon illustration of a bat amid 3 stars" + } + }, + "bannerData": { + "bannerHeader": "Halloween on the High Seas", + "bannerColorInit": "#539659", + "bannerColorEnd": "#2B6B30", + "gradientInit": "8%", + "gradientEnd": "58%" + } + } + } + }, + { + "productId": "6_western_caribbean_galveston", + "productName": "6-Night Western Caribbean Cruise from Galveston", + "productDisplayName": "6-Night Western Caribbean Cruise from Galveston", + "media": { + "headerSliver": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/wdpro-assets/dcl/finder/destinations/ports-of-call/grand-cayman-cayman-islands/grand-cayman-islands-16x9.jpg?1670421556098", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/ports-of-call/grand-cayman-cayman-islands/grand-cayman-islands-16x9.jpg?1670421556098", + "alt": "" + }, + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/grand-cayman/grand-cayman-islands-32x9.jpg?1670421556098", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/grand-cayman/grand-cayman-islands-32x9.jpg?1670421556098", + "alt": "A beach with chairs and a dock that has 3 gazeboes, a bar, chairs and tables" + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/grand-cayman/grand-cayman-islands-32x9.jpg?1670421556098", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/grand-cayman/grand-cayman-islands-32x9.jpg?1670421556098", + "alt": "A beach with chairs and a dock that has 3 gazeboes, a bar, chairs and tables" + } + }, + "itineraries": [ + { + "itineraryId": "CTM,CZM", + "numberOfSailings": 2, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DM1559", + "packageId": "28678745", + "packageCode": "6SG", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4452, + "tax": 561.52, + "taxIncluded": true, + "total": 5013.52 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1410, + "tax": 140.38, + "taxIncluded": true, + "total": 1550.38 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1410, + "tax": 140.38, + "taxIncluded": true, + "total": 1550.38 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 816, + "tax": 140.38, + "taxIncluded": true, + "total": 956.38 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 816, + "tax": 140.38, + "taxIncluded": true, + "total": 956.38 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4788, + "tax": 561.52, + "taxIncluded": true, + "total": 5349.52 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1548, + "tax": 140.38, + "taxIncluded": true, + "total": 1688.38 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1548, + "tax": 140.38, + "taxIncluded": true, + "total": 1688.38 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 846, + "tax": 140.38, + "taxIncluded": true, + "total": 986.38 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 846, + "tax": 140.38, + "taxIncluded": true, + "total": 986.38 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5760, + "tax": 561.52, + "taxIncluded": true, + "total": 6321.52 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2004, + "tax": 140.38, + "taxIncluded": true, + "total": 2144.38 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2004, + "tax": 140.38, + "taxIncluded": true, + "total": 2144.38 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 876, + "tax": 140.38, + "taxIncluded": true, + "total": 1016.38 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 876, + "tax": 140.38, + "taxIncluded": true, + "total": 1016.38 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 10224, + "tax": 561.52, + "taxIncluded": true, + "total": 10785.52 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3840, + "tax": 140.38, + "taxIncluded": true, + "total": 3980.38 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3840, + "tax": 140.38, + "taxIncluded": true, + "total": 3980.38 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1272, + "tax": 140.38, + "taxIncluded": true, + "total": 1412.38 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1272, + "tax": 140.38, + "taxIncluded": true, + "total": 1412.38 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 6, + "gratuitiesRate": 87 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 4452, + "tax": 561.52, + "taxIncluded": true, + "total": 5013.52 + }, + "portsOfCall": [ + "Costa Maya, Mexico", + "Cozumel, Mexico" + ], + "twoStopsItinerary": false, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/costa-maya/costa-maya-adobestock_153992054-16x9.jpg?1676992543225", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/costa-maya/costa-maya-adobestock_153992054-16x9.jpg?1676992543225", + "alt": "Many large turtles swim in the clear water of Costa Maya" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/costa-maya/costa-maya-adobestock_153992054-32x9.jpg?1676992543225", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/costa-maya/costa-maya-adobestock_153992054-32x9.jpg?1676992543225", + "alt": "Many large turtles swim in the clear water of Costa Maya" + } + } + ] + } + }, + { + "productId": "5_western_fort_lauderdale", + "productName": "5-Night Western Caribbean Cruise from Fort Lauderdale", + "productDisplayName": "5-Night Western Caribbean Cruise from Fort Lauderdale", + "media": { + "headerSliver": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-00.jpg?2022-09-08T21:17:18+00:00", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-00.jpg?2022-09-08T21:17:18+00:00", + "alt": "A beach and boardwalk in Fort Lauderdale at sunset" + }, + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00", + "alt": "A beach and boardwalk in Fort Lauderdale at sunset" + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/321730566-32x9.jpg?2022-09-08T21:17:18+00:00", + "alt": "A beach and boardwalk in Fort Lauderdale at sunset" + } + }, + "itineraries": [ + { + "itineraryId": "CZM,GOC", + "numberOfSailings": 2, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DM1572", + "packageId": "28808724", + "packageCode": "5PEF", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4502, + "tax": 594.28, + "taxIncluded": true, + "total": 5096.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1315, + "tax": 148.57, + "taxIncluded": true, + "total": 1463.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1315, + "tax": 148.57, + "taxIncluded": true, + "total": 1463.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 936, + "tax": 148.57, + "taxIncluded": true, + "total": 1084.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 936, + "tax": 148.57, + "taxIncluded": true, + "total": 1084.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4909.6, + "tax": 594.28, + "taxIncluded": true, + "total": 5503.88 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1490, + "tax": 148.57, + "taxIncluded": true, + "total": 1638.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1490, + "tax": 148.57, + "taxIncluded": true, + "total": 1638.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 964.8, + "tax": 148.57, + "taxIncluded": true, + "total": 1113.37 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 964.8, + "tax": 148.57, + "taxIncluded": true, + "total": 1113.37 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5884.4, + "tax": 594.28, + "taxIncluded": true, + "total": 6478.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1915, + "tax": 148.57, + "taxIncluded": true, + "total": 2063.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1915, + "tax": 148.57, + "taxIncluded": true, + "total": 2063.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1027.2, + "tax": 148.57, + "taxIncluded": true, + "total": 1175.77 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1027.2, + "tax": 148.57, + "taxIncluded": true, + "total": 1175.77 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 10496.4, + "tax": 594.28, + "taxIncluded": true, + "total": 11090.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3885, + "tax": 148.57, + "taxIncluded": true, + "total": 4033.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3885, + "tax": 148.57, + "taxIncluded": true, + "total": 4033.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1363.2, + "tax": 148.57, + "taxIncluded": true, + "total": 1511.77 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1363.2, + "tax": 148.57, + "taxIncluded": true, + "total": 1511.77 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 4502, + "tax": 594.28, + "taxIncluded": true, + "total": 5096.28 + }, + "portsOfCall": [ + "Disney Castaway Cay", + "Cozumel, Mexico" + ], + "twoStopsItinerary": false, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/cozumel-mexico/cozumel-mexico-01-16x9.jpg?1679932310648", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/cozumel-mexico/cozumel-mexico-01-16x9.jpg?1679932310648", + "alt": "A lighthouse overlooks a serene seashore and the Atlantic Ocean in Cozumel, Mexico" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/cozumel-mexico/cozumel-mexico-01-32x9.jpg?1679932310648", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/cozumel-mexico/cozumel-mexico-01-32x9.jpg?1679932310648", + "alt": "A lighthouse overlooks a serene seashore and the Atlantic Ocean in Cozumel, Mexico" + } + } + ] + } + }, + { + "productId": "6_bermuda_new_york_halloween", + "productName": "6-Night Halloween on the High Seas Bermuda Cruise from New York", + "productDisplayName": "6-Night Bermuda Cruise from New York", + "media": { + "headerSliver": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-16x9.jpg?1658403189591", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-16x9.jpg?1658403189591", + "alt": "" + }, + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1658403189591", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1658403189591", + "alt": "Dressed in Halloween attire, Mickey Mouse and Minnie Mouse perform aboard a Disney cruise" + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1658403189591", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/destinations/cruise-destinations/seasonal-cruises/seasonal-mickey-minnie-halloween-32x9.jpg?1658403189591", + "alt": "Dressed in Halloween attire, Mickey Mouse and Minnie Mouse perform aboard a Disney cruise" + } + }, + "itineraries": [ + { + "itineraryId": "KWF", + "numberOfSailings": 2, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DD1295", + "packageId": "28387286", + "packageCode": "6SN", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4543.68, + "tax": 1061.16, + "taxIncluded": true, + "total": 5604.84 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1500, + "tax": 265.29, + "taxIncluded": true, + "total": 1765.29 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1500, + "tax": 265.29, + "taxIncluded": true, + "total": 1765.29 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 771.84, + "tax": 265.29, + "taxIncluded": true, + "total": 1037.13 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 771.84, + "tax": 265.29, + "taxIncluded": true, + "total": 1037.13 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DD-09C", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4615.68, + "tax": 1061.16, + "taxIncluded": true, + "total": 5676.84 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1536, + "tax": 265.29, + "taxIncluded": true, + "total": 1801.29 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1536, + "tax": 265.29, + "taxIncluded": true, + "total": 1801.29 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 771.84, + "tax": 265.29, + "taxIncluded": true, + "total": 1037.13 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 771.84, + "tax": 265.29, + "taxIncluded": true, + "total": 1037.13 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4951.68, + "tax": 1061.16, + "taxIncluded": true, + "total": 6012.84 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1704, + "tax": 265.29, + "taxIncluded": true, + "total": 1969.29 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1704, + "tax": 265.29, + "taxIncluded": true, + "total": 1969.29 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 771.84, + "tax": 265.29, + "taxIncluded": true, + "total": 1037.13 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 771.84, + "tax": 265.29, + "taxIncluded": true, + "total": 1037.13 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 10296, + "tax": 1061.16, + "taxIncluded": true, + "total": 11357.16 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3852, + "tax": 265.29, + "taxIncluded": true, + "total": 4117.29 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3852, + "tax": 265.29, + "taxIncluded": true, + "total": 4117.29 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1296, + "tax": 265.29, + "taxIncluded": true, + "total": 1561.29 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1296, + "tax": 265.29, + "taxIncluded": true, + "total": 1561.29 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 6, + "gratuitiesRate": 87 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 4543.68, + "tax": 1061.16, + "taxIncluded": true, + "total": 5604.84 + }, + "portsOfCall": [ + "King's Wharf, Bermuda", + "King's Wharf, Bermuda", + "King's Wharf, Bermuda" + ], + "twoStopsItinerary": false, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-04-16x9.jpg?1617746716940", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-04-16x9.jpg?1617746716940", + "alt": "Waves lapping along a pristine beach with verdant flora in Bermuda" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-04-32x9.jpg?1617746716940", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/bermuda/bermuda-04-32x9.jpg?1617746716940", + "alt": "Waves lapping along a pristine beach with verdant flora in Bermuda" + } + }, + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-16x9.jpg?1667226141146", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-16x9.jpg?1667226141146", + "alt": "The Admiral Donald Duck statue in front of a decorative tree with hanging pumpkins" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-32x9.jpg?1667226141146", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/themed-sailings/halloween-on-high-seas/halloween-01-32x9.jpg?1667226141146", + "alt": "The Admiral Donald Duck statue in front of a decorative tree with hanging pumpkins" + } + } + ], + "themeData": { + "id": "SPOOKY", + "media": { + "bannerIcon": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Icon-HHS.svg?1667226141145", + "type": "svg", + "alt": "An icon illustration of a Mickey Mouse pumpkin head" + }, + "themePizzazzDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Desktop-HHS.svg?1667226141145", + "type": "svg", + "alt": "An icon illustration of 3 bats in front of a moon with 2 stars" + }, + "themePizzazzMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/dam/disney-cruise-line/themed-sailings/CL_Pizzazz_Large-Mobile-HHS.svg?1667226141145", + "type": "svg", + "alt": "An icon illustration of a bat amid 3 stars" + } + }, + "bannerData": { + "bannerHeader": "Halloween on the High Seas", + "bannerColorInit": "#539659", + "bannerColorEnd": "#2B6B30", + "gradientInit": "8%", + "gradientEnd": "58%" + } + } + } + }, + { + "productId": "5_bahamian_fort_lauderdale_dd", + "productName": "5-Night Bahamian Cruise with 2 Stops at Castaway Cay from Fort Lauderdale", + "productDisplayName": "5-Night Bahamian Cruise with 2 Stops at Castaway Cay from Fort Lauderdale", + "media": { + "headerSliver": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/160/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/306620020-00.jpg?2022-09-08T21:17:18+00:00", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/306620020-00.jpg?2022-09-08T21:17:18+00:00", + "alt": "The city of Fort Lauderdale overlooking the water" + }, + "mediaProductMobilehero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/105/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/306620020-32x9.jpg?2022-09-08T21:17:18+00:00", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/306620020-32x9.jpg?2022-09-08T21:17:18+00:00", + "alt": "The city of Fort Lauderdale overlooking the water" + }, + "mediaProductDesktopHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/960/270/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/306620020-32x9.jpg?2022-09-08T21:17:18+00:00", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/ports/ft-lauderdale-fl/306620020-32x9.jpg?2022-09-08T21:17:18+00:00", + "alt": "The city of Fort Lauderdale overlooking the water" + } + }, + "itineraries": [ + { + "itineraryId": "GOC,NAS", + "numberOfSailings": 1, + "blockedFromBooking": false, + "sailings": [ + { + "sailingId": "DD1326", + "packageId": "28656442", + "packageCode": "5PEF", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "type": "ship", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + } + } + }, + "available": true, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5752, + "tax": 467.32, + "taxIncluded": true, + "total": 6219.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1700, + "tax": 116.83, + "taxIncluded": true, + "total": 1816.83 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1700, + "tax": 116.83, + "taxIncluded": true, + "total": 1816.83 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1176, + "tax": 116.83, + "taxIncluded": true, + "total": 1292.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1176, + "tax": 116.83, + "taxIncluded": true, + "total": 1292.83 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DD-09C", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5952, + "tax": 467.32, + "taxIncluded": true, + "total": 6419.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1800, + "tax": 116.83, + "taxIncluded": true, + "total": 1916.83 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1800, + "tax": 116.83, + "taxIncluded": true, + "total": 1916.83 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1176, + "tax": 116.83, + "taxIncluded": true, + "total": 1292.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1176, + "tax": 116.83, + "taxIncluded": true, + "total": 1292.83 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 6212, + "tax": 467.32, + "taxIncluded": true, + "total": 6679.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1930, + "tax": 116.83, + "taxIncluded": true, + "total": 2046.83 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1930, + "tax": 116.83, + "taxIncluded": true, + "total": 2046.83 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1176, + "tax": 116.83, + "taxIncluded": true, + "total": 1292.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1176, + "tax": 116.83, + "taxIncluded": true, + "total": 1292.83 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-ROYAL", + "stateroomCategory": "01A", + "stateroomCategoryContentId": "DD-01A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-ROYAL", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 30355.2, + "tax": 467.32, + "taxIncluded": true, + "total": 30822.52 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 12240, + "tax": 116.83, + "taxIncluded": true, + "total": 12356.83 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 12240, + "tax": 116.83, + "taxIncluded": true, + "total": 12356.83 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 2937.6, + "tax": 116.83, + "taxIncluded": true, + "total": 3054.43 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 2937.6, + "tax": 116.83, + "taxIncluded": true, + "total": 3054.43 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5 + } + ], + "minimumPriceSummary": { + "currency": "USD", + "subtotal": 5752, + "tax": 467.32, + "taxIncluded": true, + "total": 6219.32 + }, + "portsOfCall": [ + "Nassau, Bahamas", + "Disney Castaway Cay", + "Disney Castaway Cay" + ], + "twoStopsItinerary": true, + "oneWayItinerary": false + } + ], + "productItineraryData": { + "productItineraryImages": [ + { + "image16x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/1600/900/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-16x9.jpg?1679666138169", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-16x9.jpg?1679666138169" + }, + "image32x9": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/32/9/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-32x9.jpg?1679666138169", + "type": "jpg", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/cruise-products/castaway-cay/castaway-cay-07-32x9.jpg?1679666138169" + } + } + ] + } + } + ], + "additionalSpecialOfferProducts": [] +} \ No newline at end of file diff --git a/sailings.csv b/sailings.csv new file mode 100644 index 0000000..03975b8 --- /dev/null +++ b/sailings.csv @@ -0,0 +1,34 @@ +"sailingId","packageId","packageCode","productId","itineraryId","ship.id","ship.name","ship.seawareId","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.id","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.type","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.name","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.displayOrder.displayOrder","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.url","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.type","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.title","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.transcodeTemplate","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.alt","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.url","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.type","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.title","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.transcodeTemplate","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.alt","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.url","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.type","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.title","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.transcodeTemplate","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.alt","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.id","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.text","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.type","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.sections.body","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.id","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.text","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.type","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.buttonCardHeader","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.body","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.id","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.text","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.type","ship.stateroomTypes.DM-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.sections.body","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.id","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.type","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.name","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.displayOrder.displayOrder","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.url","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.type","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.title","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.transcodeTemplate","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.alt","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.url","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.type","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.title","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.transcodeTemplate","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.alt","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.url","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.type","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.title","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.transcodeTemplate","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.alt","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.id","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.text","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.type","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.sections.body","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.id","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.text","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.type","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.buttonCardHeader","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.body","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.id","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.text","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.type","ship.stateroomTypes.DM-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.sections.body","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.id","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.type","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.name","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.displayOrder.displayOrder","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.url","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.type","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.title","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.transcodeTemplate","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.alt","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.url","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.type","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.title","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.transcodeTemplate","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.alt","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.url","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.type","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.title","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.transcodeTemplate","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.alt","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.id","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.text","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.type","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.sections.body","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.id","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.text","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.type","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.buttonCardHeader","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.body","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.id","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.text","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.type","ship.stateroomTypes.DM-SUITE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.sections.body","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.id","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.type","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.name","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.displayOrder.displayOrder","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.url","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.type","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.title","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.transcodeTemplate","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.alt","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.url","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.type","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.title","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.transcodeTemplate","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.alt","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.url","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.type","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.title","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.transcodeTemplate","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.alt","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.id","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.text","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.type","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.sections.body","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.id","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.text","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.type","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.buttonCardHeader","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.body","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.id","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.text","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.type","ship.stateroomTypes.DM-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.sections.body","sailDateFrom","sailDateTo","available","isEarlyBooking","travelParties.0","hasAvailability","blockedFromBooking","numberOfNights","gratuitiesRate","package.packageID","package.packageCode","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.id","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.type","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.name","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.displayOrder.displayOrder","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.url","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.type","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.title","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.transcodeTemplate","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.alt","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.url","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.type","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.title","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.transcodeTemplate","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.alt","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.url","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.type","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.title","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.transcodeTemplate","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.alt","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.id","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.text","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.type","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.sections.body","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.id","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.text","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.type","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.buttonCardHeader","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.body","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.id","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.text","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.type","ship.stateroomTypes.DD-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.sections.body","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.id","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.type","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.name","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.displayOrder.displayOrder","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.url","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.type","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.title","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.transcodeTemplate","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.alt","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.url","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.type","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.title","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.transcodeTemplate","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.alt","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.url","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.type","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.title","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.transcodeTemplate","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.alt","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.id","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.text","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.type","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.sections.body","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.id","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.text","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.type","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.buttonCardHeader","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.body","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.id","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.text","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.type","ship.stateroomTypes.DD-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.sections.body","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.id","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.type","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.name","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.displayOrder.displayOrder","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.url","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.type","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.title","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.transcodeTemplate","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.alt","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.url","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.type","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.title","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.transcodeTemplate","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.alt","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.url","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.type","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.title","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.transcodeTemplate","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.alt","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.id","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.text","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.type","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.sections.body","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.id","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.text","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.type","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.buttonCardHeader","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.body","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.id","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.text","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.type","ship.stateroomTypes.DD-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.sections.body","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.id","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.type","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.name","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.displayOrder.displayOrder","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.url","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.type","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.title","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.transcodeTemplate","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.alt","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.url","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.type","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.title","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.transcodeTemplate","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.alt","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.url","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.type","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.title","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.transcodeTemplate","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.alt","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.id","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.text","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.type","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.sections.body","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.id","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.text","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.type","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.buttonCardHeader","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.body","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.id","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.text","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.type","ship.stateroomTypes.DD-SUITE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.sections.body","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.id","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.type","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.name","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.displayOrder.displayOrder","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.url","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.type","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.title","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.transcodeTemplate","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.alt","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.url","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.type","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.title","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.transcodeTemplate","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.alt","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.url","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.type","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.title","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.transcodeTemplate","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.alt","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.id","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.text","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.type","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.sections.body","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.id","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.text","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.type","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.buttonCardHeader","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.body","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.id","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.text","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.type","ship.stateroomTypes.DF-VERANDAH;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.sections.body","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.id","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.type","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.name","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.displayOrder.displayOrder","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.url","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.type","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.title","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.transcodeTemplate","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.alt","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.url","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.type","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.title","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.transcodeTemplate","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.alt","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.url","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.type","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.title","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.transcodeTemplate","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.alt","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.id","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.text","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.type","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.sections.body","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.id","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.text","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.type","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.buttonCardHeader","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.body","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.id","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.text","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.type","ship.stateroomTypes.DF-OUTSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.sections.body","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.id","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.type","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.name","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.displayOrder.displayOrder","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.url","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.type","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.title","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.transcodeTemplate","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.alt","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.url","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.type","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.title","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.transcodeTemplate","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.alt","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.url","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.type","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.title","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.transcodeTemplate","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.alt","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.id","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.text","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.type","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.sections.body","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.id","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.text","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.type","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.buttonCardHeader","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.body","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.id","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.text","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.type","ship.stateroomTypes.DF-INSIDE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.sections.body","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.id","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.type","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.name","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.displayOrder.displayOrder","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.url","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.type","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.title","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.transcodeTemplate","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.finderDetailStateroomsFullWidthHero.alt","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.url","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.type","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.title","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.transcodeTemplate","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassDesktop.alt","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.url","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.type","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.title","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.transcodeTemplate","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.media.stateroomClassMobile.alt","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.id","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.text","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.type","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.shortDescription.sections.body","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.id","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.text","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.type","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.buttonCardHeader","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.ctaCard.sections.body","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.id","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.text","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.type","ship.stateroomTypes.DF-SUITE;entityType=stateroom-type;destination=dcl.descriptions.stateroomClassDescription.sections.body" +"DM1563","28684242","6RGJ","6_western_caribbean_galveston_san_juan","CZM,FMH,GEC,SJU","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2024-04-14","2024-04-20",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":2929.92,""tax"":638,""taxIncluded"":true,""total"":3567.92},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":912,""tax"":159.5,""taxIncluded"":true,""total"":1071.5},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":912,""tax"":159.5,""taxIncluded"":true,""total"":1071.5},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":552.96,""tax"":159.5,""taxIncluded"":true,""total"":712.46},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":552.96,""tax"":159.5,""taxIncluded"":true,""total"":712.46}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3179.52,""tax"":638,""taxIncluded"":true,""total"":3817.52},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1008,""tax"":159.5,""taxIncluded"":true,""total"":1167.5},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1008,""tax"":159.5,""taxIncluded"":true,""total"":1167.5},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":581.76,""tax"":159.5,""taxIncluded"":true,""total"":741.26},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":581.76,""tax"":159.5,""taxIncluded"":true,""total"":741.26}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3861.12,""tax"":638,""taxIncluded"":true,""total"":4499.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1320,""tax"":159.5,""taxIncluded"":true,""total"":1479.5},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1320,""tax"":159.5,""taxIncluded"":true,""total"":1479.5},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":610.56,""tax"":159.5,""taxIncluded"":true,""total"":770.06},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":610.56,""tax"":159.5,""taxIncluded"":true,""total"":770.06}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7826.88,""tax"":638,""taxIncluded"":true,""total"":8464.88},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2940,""tax"":159.5,""taxIncluded"":true,""total"":3099.5},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2940,""tax"":159.5,""taxIncluded"":true,""total"":3099.5},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":973.44,""tax"":159.5,""taxIncluded"":true,""total"":1132.94},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":973.44,""tax"":159.5,""taxIncluded"":true,""total"":1132.94}}}}]",true,"",6,87,"28684242","6RGJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DM1566","28808718","5SJPE","5_eastern_caribbean_san_juan_fort_lauderdale","GOC,NAS,PEF,STT","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2024-05-04","2024-05-09",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3120.8,""tax"":459,""taxIncluded"":true,""total"":3579.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":970,""tax"":114.75,""taxIncluded"":true,""total"":1084.75},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":970,""tax"":114.75,""taxIncluded"":true,""total"":1084.75},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":590.4,""tax"":114.75,""taxIncluded"":true,""total"":705.15},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":590.4,""tax"":114.75,""taxIncluded"":true,""total"":705.15}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3258.8,""tax"":459,""taxIncluded"":true,""total"":3717.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1015,""tax"":114.75,""taxIncluded"":true,""total"":1129.75},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1015,""tax"":114.75,""taxIncluded"":true,""total"":1129.75},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":614.4,""tax"":114.75,""taxIncluded"":true,""total"":729.15},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":614.4,""tax"":114.75,""taxIncluded"":true,""total"":729.15}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3926.8,""tax"":459,""taxIncluded"":true,""total"":4385.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1325,""tax"":114.75,""taxIncluded"":true,""total"":1439.75},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1325,""tax"":114.75,""taxIncluded"":true,""total"":1439.75},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":638.4,""tax"":114.75,""taxIncluded"":true,""total"":753.15},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":638.4,""tax"":114.75,""taxIncluded"":true,""total"":753.15}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7583.6,""tax"":459,""taxIncluded"":true,""total"":8042.6},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2875,""tax"":114.75,""taxIncluded"":true,""total"":2989.75},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2875,""tax"":114.75,""taxIncluded"":true,""total"":2989.75},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":916.8,""tax"":114.75,""taxIncluded"":true,""total"":1031.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":916.8,""tax"":114.75,""taxIncluded"":true,""total"":1031.55}}}}]",true,"",5,72.5,"28808718","5SJPE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DM1542","28672672","5SG","5_western_caribbean_galveston","CZM,PGO","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2024-01-12","2024-01-17",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3562.8,""tax"":520.6,""taxIncluded"":true,""total"":4083.4},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1095,""tax"":130.15,""taxIncluded"":true,""total"":1225.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1095,""tax"":130.15,""taxIncluded"":true,""total"":1225.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":686.4,""tax"":130.15,""taxIncluded"":true,""total"":816.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":686.4,""tax"":130.15,""taxIncluded"":true,""total"":816.55}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3810.8,""tax"":520.6,""taxIncluded"":true,""total"":4331.4},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1195,""tax"":130.15,""taxIncluded"":true,""total"":1325.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1195,""tax"":130.15,""taxIncluded"":true,""total"":1325.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":710.4,""tax"":130.15,""taxIncluded"":true,""total"":840.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":710.4,""tax"":130.15,""taxIncluded"":true,""total"":840.55}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4228.8,""tax"":520.6,""taxIncluded"":true,""total"":4749.4},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1380,""tax"":130.15,""taxIncluded"":true,""total"":1510.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1380,""tax"":130.15,""taxIncluded"":true,""total"":1510.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":734.4,""tax"":130.15,""taxIncluded"":true,""total"":864.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":734.4,""tax"":130.15,""taxIncluded"":true,""total"":864.55}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7343.2,""tax"":520.6,""taxIncluded"":true,""total"":7863.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2750,""tax"":130.15,""taxIncluded"":true,""total"":2880.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2750,""tax"":130.15,""taxIncluded"":true,""total"":2880.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":921.6,""tax"":130.15,""taxIncluded"":true,""total"":1051.75},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":921.6,""tax"":130.15,""taxIncluded"":true,""total"":1051.75}}}}]",true,"",5,72.5,"28672672","5SG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DM1544","28672674","5SG","5_western_caribbean_galveston","CZM,PGO","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2024-01-21","2024-01-26",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3168.4,""tax"":520.6,""taxIncluded"":true,""total"":3689},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":965,""tax"":130.15,""taxIncluded"":true,""total"":1095.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":965,""tax"":130.15,""taxIncluded"":true,""total"":1095.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":619.2,""tax"":130.15,""taxIncluded"":true,""total"":749.35},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":619.2,""tax"":130.15,""taxIncluded"":true,""total"":749.35}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3446.4,""tax"":520.6,""taxIncluded"":true,""total"":3967},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1080,""tax"":130.15,""taxIncluded"":true,""total"":1210.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1080,""tax"":130.15,""taxIncluded"":true,""total"":1210.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":643.2,""tax"":130.15,""taxIncluded"":true,""total"":773.35},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":643.2,""tax"":130.15,""taxIncluded"":true,""total"":773.35}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3874.4,""tax"":520.6,""taxIncluded"":true,""total"":4395},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1270,""tax"":130.15,""taxIncluded"":true,""total"":1400.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1270,""tax"":130.15,""taxIncluded"":true,""total"":1400.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":667.2,""tax"":130.15,""taxIncluded"":true,""total"":797.35},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":667.2,""tax"":130.15,""taxIncluded"":true,""total"":797.35}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":6412.8,""tax"":520.6,""taxIncluded"":true,""total"":6933.4},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2400,""tax"":130.15,""taxIncluded"":true,""total"":2530.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2400,""tax"":130.15,""taxIncluded"":true,""total"":2530.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":806.4,""tax"":130.15,""taxIncluded"":true,""total"":936.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":806.4,""tax"":130.15,""taxIncluded"":true,""total"":936.55}}}}]",true,"",5,72.5,"28672674","5SG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DM1561","28678747","5SG","5_western_caribbean_galveston","CZM,PGO","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2024-04-04","2024-04-09",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3631.6,""tax"":520.6,""taxIncluded"":true,""total"":4152.2},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1115,""tax"":130.15,""taxIncluded"":true,""total"":1245.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1115,""tax"":130.15,""taxIncluded"":true,""total"":1245.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":700.8,""tax"":130.15,""taxIncluded"":true,""total"":830.95},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":700.8,""tax"":130.15,""taxIncluded"":true,""total"":830.95}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3889.6,""tax"":520.6,""taxIncluded"":true,""total"":4410.2},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1220,""tax"":130.15,""taxIncluded"":true,""total"":1350.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1220,""tax"":130.15,""taxIncluded"":true,""total"":1350.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":724.8,""tax"":130.15,""taxIncluded"":true,""total"":854.95},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":724.8,""tax"":130.15,""taxIncluded"":true,""total"":854.95}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4317.6,""tax"":520.6,""taxIncluded"":true,""total"":4838.2},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1410,""tax"":130.15,""taxIncluded"":true,""total"":1540.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1410,""tax"":130.15,""taxIncluded"":true,""total"":1540.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":748.8,""tax"":130.15,""taxIncluded"":true,""total"":878.95},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":748.8,""tax"":130.15,""taxIncluded"":true,""total"":878.95}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7491.6,""tax"":520.6,""taxIncluded"":true,""total"":8012.2},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2805,""tax"":130.15,""taxIncluded"":true,""total"":2935.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2805,""tax"":130.15,""taxIncluded"":true,""total"":2935.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":940.8,""tax"":130.15,""taxIncluded"":true,""total"":1070.95},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":940.8,""tax"":130.15,""taxIncluded"":true,""total"":1070.95}}}}]",true,"",5,72.5,"28678747","5SG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DM1562","28684241","5SG","5_western_caribbean_galveston","CZM,PGO","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2024-04-09","2024-04-14",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3261.2,""tax"":520.6,""taxIncluded"":true,""total"":3781.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1045,""tax"":130.15,""taxIncluded"":true,""total"":1175.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1045,""tax"":130.15,""taxIncluded"":true,""total"":1175.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":585.6,""tax"":130.15,""taxIncluded"":true,""total"":715.75},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":585.6,""tax"":130.15,""taxIncluded"":true,""total"":715.75}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3519.2,""tax"":520.6,""taxIncluded"":true,""total"":4039.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1150,""tax"":130.15,""taxIncluded"":true,""total"":1280.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1150,""tax"":130.15,""taxIncluded"":true,""total"":1280.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":609.6,""tax"":130.15,""taxIncluded"":true,""total"":739.75},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":609.6,""tax"":130.15,""taxIncluded"":true,""total"":739.75}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4107.2,""tax"":520.6,""taxIncluded"":true,""total"":4627.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1420,""tax"":130.15,""taxIncluded"":true,""total"":1550.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1420,""tax"":130.15,""taxIncluded"":true,""total"":1550.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":633.6,""tax"":130.15,""taxIncluded"":true,""total"":763.75},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":633.6,""tax"":130.15,""taxIncluded"":true,""total"":763.75}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7312.8,""tax"":520.6,""taxIncluded"":true,""total"":7833.4},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2730,""tax"":130.15,""taxIncluded"":true,""total"":2860.15},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2730,""tax"":130.15,""taxIncluded"":true,""total"":2860.15},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":926.4,""tax"":130.15,""taxIncluded"":true,""total"":1056.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":926.4,""tax"":130.15,""taxIncluded"":true,""total"":1056.55}}}}]",true,"",5,72.5,"28684241","5SG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DM1548","28672678","5SY","5_western_caribbean_new_orleans","CZM,PGO","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2024-02-04","2024-02-09",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3198.4,""tax"":514.88,""taxIncluded"":true,""total"":3713.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":980,""tax"":128.72,""taxIncluded"":true,""total"":1108.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":980,""tax"":128.72,""taxIncluded"":true,""total"":1108.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":619.2,""tax"":128.72,""taxIncluded"":true,""total"":747.92},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":619.2,""tax"":128.72,""taxIncluded"":true,""total"":747.92}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3586.4,""tax"":514.88,""taxIncluded"":true,""total"":4101.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1150,""tax"":128.72,""taxIncluded"":true,""total"":1278.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1150,""tax"":128.72,""taxIncluded"":true,""total"":1278.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":643.2,""tax"":128.72,""taxIncluded"":true,""total"":771.92},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":643.2,""tax"":128.72,""taxIncluded"":true,""total"":771.92}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3994.4,""tax"":514.88,""taxIncluded"":true,""total"":4509.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1330,""tax"":128.72,""taxIncluded"":true,""total"":1458.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1330,""tax"":128.72,""taxIncluded"":true,""total"":1458.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":667.2,""tax"":128.72,""taxIncluded"":true,""total"":795.92},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":667.2,""tax"":128.72,""taxIncluded"":true,""total"":795.92}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":6590.8,""tax"":514.88,""taxIncluded"":true,""total"":7105.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2465,""tax"":128.72,""taxIncluded"":true,""total"":2593.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2465,""tax"":128.72,""taxIncluded"":true,""total"":2593.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":830.4,""tax"":128.72,""taxIncluded"":true,""total"":959.12},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":830.4,""tax"":128.72,""taxIncluded"":true,""total"":959.12}}}}]",true,"",5,72.5,"28672678","5SY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DM1550","28672680","5SY","5_western_caribbean_new_orleans","CZM,PGO","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2024-02-16","2024-02-21",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3473.6,""tax"":514.88,""taxIncluded"":true,""total"":3988.48},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1060,""tax"":128.72,""taxIncluded"":true,""total"":1188.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1060,""tax"":128.72,""taxIncluded"":true,""total"":1188.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":128.72,""taxIncluded"":true,""total"":805.52},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":128.72,""taxIncluded"":true,""total"":805.52}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3901.6,""tax"":514.88,""taxIncluded"":true,""total"":4416.48},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1250,""tax"":128.72,""taxIncluded"":true,""total"":1378.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1250,""tax"":128.72,""taxIncluded"":true,""total"":1378.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":700.8,""tax"":128.72,""taxIncluded"":true,""total"":829.52},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":700.8,""tax"":128.72,""taxIncluded"":true,""total"":829.52}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4329.6,""tax"":514.88,""taxIncluded"":true,""total"":4844.48},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1440,""tax"":128.72,""taxIncluded"":true,""total"":1568.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1440,""tax"":128.72,""taxIncluded"":true,""total"":1568.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":724.8,""tax"":128.72,""taxIncluded"":true,""total"":853.52},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":724.8,""tax"":128.72,""taxIncluded"":true,""total"":853.52}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7145.2,""tax"":514.88,""taxIncluded"":true,""total"":7660.08},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2675,""tax"":128.72,""taxIncluded"":true,""total"":2803.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2675,""tax"":128.72,""taxIncluded"":true,""total"":2803.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":897.6,""tax"":128.72,""taxIncluded"":true,""total"":1026.32},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":897.6,""tax"":128.72,""taxIncluded"":true,""total"":1026.32}}}}]",true,"",5,72.5,"28672680","5SY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DM1551","28672681","5SY","5_western_caribbean_new_orleans","CZM,PGO","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2024-02-21","2024-02-26",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3316.8,""tax"":514.88,""taxIncluded"":true,""total"":3831.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1020,""tax"":128.72,""taxIncluded"":true,""total"":1148.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1020,""tax"":128.72,""taxIncluded"":true,""total"":1148.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":638.4,""tax"":128.72,""taxIncluded"":true,""total"":767.12},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":638.4,""tax"":128.72,""taxIncluded"":true,""total"":767.12}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3754.8,""tax"":514.88,""taxIncluded"":true,""total"":4269.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1215,""tax"":128.72,""taxIncluded"":true,""total"":1343.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1215,""tax"":128.72,""taxIncluded"":true,""total"":1343.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":662.4,""tax"":128.72,""taxIncluded"":true,""total"":791.12},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":662.4,""tax"":128.72,""taxIncluded"":true,""total"":791.12}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4192.8,""tax"":514.88,""taxIncluded"":true,""total"":4707.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1410,""tax"":128.72,""taxIncluded"":true,""total"":1538.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1410,""tax"":128.72,""taxIncluded"":true,""total"":1538.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":686.4,""tax"":128.72,""taxIncluded"":true,""total"":815.12},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":686.4,""tax"":128.72,""taxIncluded"":true,""total"":815.12}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7006.4,""tax"":514.88,""taxIncluded"":true,""total"":7521.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2620,""tax"":128.72,""taxIncluded"":true,""total"":2748.72},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2620,""tax"":128.72,""taxIncluded"":true,""total"":2748.72},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":883.2,""tax"":128.72,""taxIncluded"":true,""total"":1011.92},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":883.2,""tax"":128.72,""taxIncluded"":true,""total"":1011.92}}}}]",true,"",5,72.5,"28672681","5SY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DM1523","28000028","5SI","5_western_caribbean_miami_halloween","GEC,GOC","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2023-09-30","2023-10-05",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11A"",""stateroomCategoryContentId"":""DM-11A"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3700,""tax"":515.24,""taxIncluded"":true,""total"":4215.24},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1140,""tax"":128.81,""taxIncluded"":true,""total"":1268.81},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1140,""tax"":128.81,""taxIncluded"":true,""total"":1268.81},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":710,""tax"":128.81,""taxIncluded"":true,""total"":838.81},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":710,""tax"":128.81,""taxIncluded"":true,""total"":838.81}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DM-09C"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3970,""tax"":515.24,""taxIncluded"":true,""total"":4485.24},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1250,""tax"":128.81,""taxIncluded"":true,""total"":1378.81},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1250,""tax"":128.81,""taxIncluded"":true,""total"":1378.81},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":735,""tax"":128.81,""taxIncluded"":true,""total"":863.81},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":735,""tax"":128.81,""taxIncluded"":true,""total"":863.81}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEFAMILY"",""stateroomCategory"":""04E"",""stateroomCategoryContentId"":""DM-04E"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEFAMILY"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5670,""tax"":515.24,""taxIncluded"":true,""total"":6185.24},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2045,""tax"":128.81,""taxIncluded"":true,""total"":2173.81},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2045,""tax"":128.81,""taxIncluded"":true,""total"":2173.81},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":790,""tax"":128.81,""taxIncluded"":true,""total"":918.81},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":790,""tax"":128.81,""taxIncluded"":true,""total"":918.81}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7800,""tax"":515.24,""taxIncluded"":true,""total"":8315.24},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2925,""tax"":128.81,""taxIncluded"":true,""total"":3053.81},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2925,""tax"":128.81,""taxIncluded"":true,""total"":3053.81},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":975,""tax"":128.81,""taxIncluded"":true,""total"":1103.81},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":975,""tax"":128.81,""taxIncluded"":true,""total"":1103.81}}}}]",true,"",5,72.5,"28000028","5SI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DM1522","28000027","5SI","5_bahamian_miami_dd_halloween","GOC,NAS","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2023-09-25","2023-09-30",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3770,""tax"":481.96,""taxIncluded"":true,""total"":4251.96},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1165,""tax"":120.49,""taxIncluded"":true,""total"":1285.49},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1165,""tax"":120.49,""taxIncluded"":true,""total"":1285.49},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":120.49,""taxIncluded"":true,""total"":840.49},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":120.49,""taxIncluded"":true,""total"":840.49}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DM-09C"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4160,""tax"":481.96,""taxIncluded"":true,""total"":4641.96},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1340,""tax"":120.49,""taxIncluded"":true,""total"":1460.49},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1340,""tax"":120.49,""taxIncluded"":true,""total"":1460.49},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":740,""tax"":120.49,""taxIncluded"":true,""total"":860.49},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":740,""tax"":120.49,""taxIncluded"":true,""total"":860.49}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""05B"",""stateroomCategoryContentId"":""DM-05B"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5240,""tax"":481.96,""taxIncluded"":true,""total"":5721.96},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1855,""tax"":120.49,""taxIncluded"":true,""total"":1975.49},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1855,""tax"":120.49,""taxIncluded"":true,""total"":1975.49},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":765,""tax"":120.49,""taxIncluded"":true,""total"":885.49},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":765,""tax"":120.49,""taxIncluded"":true,""total"":885.49}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":8000,""tax"":481.96,""taxIncluded"":true,""total"":8481.96},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3000,""tax"":120.49,""taxIncluded"":true,""total"":3120.49},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3000,""tax"":120.49,""taxIncluded"":true,""total"":3120.49},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1000,""tax"":120.49,""taxIncluded"":true,""total"":1120.49},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1000,""tax"":120.49,""taxIncluded"":true,""total"":1120.49}}}}]",true,"",5,72.5,"28000027","5SI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1311","28656404","5PEF","5_western_caribbean_fort_lauderdale_marvel","GEC,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-01-07","2024-01-12",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3850,""tax"":502.28,""taxIncluded"":true,""total"":4352.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1205,""tax"":125.57,""taxIncluded"":true,""total"":1330.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1205,""tax"":125.57,""taxIncluded"":true,""total"":1330.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DD-09C"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4040,""tax"":502.28,""taxIncluded"":true,""total"":4542.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1300,""tax"":125.57,""taxIncluded"":true,""total"":1425.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1300,""tax"":125.57,""taxIncluded"":true,""total"":1425.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4260,""tax"":502.28,""taxIncluded"":true,""total"":4762.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1410,""tax"":125.57,""taxIncluded"":true,""total"":1535.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1410,""tax"":125.57,""taxIncluded"":true,""total"":1535.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":8195.2,""tax"":502.28,""taxIncluded"":true,""total"":8697.48},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2960,""tax"":125.57,""taxIncluded"":true,""total"":3085.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2960,""tax"":125.57,""taxIncluded"":true,""total"":3085.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1137.6,""tax"":125.57,""taxIncluded"":true,""total"":1263.17},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1137.6,""tax"":125.57,""taxIncluded"":true,""total"":1263.17}}}}]",true,"",5,72.5,"28656404","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1314","28656407","5PEF","5_western_caribbean_fort_lauderdale_marvel","GEC,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-01-21","2024-01-26",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3750,""tax"":502.28,""taxIncluded"":true,""total"":4252.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1155,""tax"":125.57,""taxIncluded"":true,""total"":1280.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1155,""tax"":125.57,""taxIncluded"":true,""total"":1280.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DD-09D"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3920,""tax"":502.28,""taxIncluded"":true,""total"":4422.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1240,""tax"":125.57,""taxIncluded"":true,""total"":1365.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1240,""tax"":125.57,""taxIncluded"":true,""total"":1365.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06B"",""stateroomCategoryContentId"":""DD-06B"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4250,""tax"":502.28,""taxIncluded"":true,""total"":4752.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1405,""tax"":125.57,""taxIncluded"":true,""total"":1530.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1405,""tax"":125.57,""taxIncluded"":true,""total"":1530.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":8056.8,""tax"":502.28,""taxIncluded"":true,""total"":8559.08},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2910,""tax"":125.57,""taxIncluded"":true,""total"":3035.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2910,""tax"":125.57,""taxIncluded"":true,""total"":3035.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1118.4,""tax"":125.57,""taxIncluded"":true,""total"":1243.97},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1118.4,""tax"":125.57,""taxIncluded"":true,""total"":1243.97}}}}]",true,"",5,72.5,"28656407","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1317","28656410","5PEF","5_western_caribbean_fort_lauderdale_marvel","GEC,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-02-04","2024-02-09",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DD-11B"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3870,""tax"":502.28,""taxIncluded"":true,""total"":4372.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1215,""tax"":125.57,""taxIncluded"":true,""total"":1340.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1215,""tax"":125.57,""taxIncluded"":true,""total"":1340.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DD-09D"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4030,""tax"":502.28,""taxIncluded"":true,""total"":4532.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1295,""tax"":125.57,""taxIncluded"":true,""total"":1420.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1295,""tax"":125.57,""taxIncluded"":true,""total"":1420.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DD-06A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4370,""tax"":502.28,""taxIncluded"":true,""total"":4872.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1465,""tax"":125.57,""taxIncluded"":true,""total"":1590.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1465,""tax"":125.57,""taxIncluded"":true,""total"":1590.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":8165.6,""tax"":502.28,""taxIncluded"":true,""total"":8667.88},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2950,""tax"":125.57,""taxIncluded"":true,""total"":3075.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2950,""tax"":125.57,""taxIncluded"":true,""total"":3075.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1132.8,""tax"":125.57,""taxIncluded"":true,""total"":1258.37},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1132.8,""tax"":125.57,""taxIncluded"":true,""total"":1258.37}}}}]",true,"",5,72.5,"28656410","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1320","28656413","5PEF","5_western_caribbean_fort_lauderdale_marvel","GEC,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-02-18","2024-02-23",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5204,""tax"":502.28,""taxIncluded"":true,""total"":5706.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1570,""tax"":125.57,""taxIncluded"":true,""total"":1695.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1570,""tax"":125.57,""taxIncluded"":true,""total"":1695.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1032,""tax"":125.57,""taxIncluded"":true,""total"":1157.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1032,""tax"":125.57,""taxIncluded"":true,""total"":1157.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DD-09D"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5384,""tax"":502.28,""taxIncluded"":true,""total"":5886.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1660,""tax"":125.57,""taxIncluded"":true,""total"":1785.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1660,""tax"":125.57,""taxIncluded"":true,""total"":1785.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1032,""tax"":125.57,""taxIncluded"":true,""total"":1157.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1032,""tax"":125.57,""taxIncluded"":true,""total"":1157.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5694,""tax"":502.28,""taxIncluded"":true,""total"":6196.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1815,""tax"":125.57,""taxIncluded"":true,""total"":1940.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1815,""tax"":125.57,""taxIncluded"":true,""total"":1940.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1032,""tax"":125.57,""taxIncluded"":true,""total"":1157.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1032,""tax"":125.57,""taxIncluded"":true,""total"":1157.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-ROYAL"",""stateroomCategory"":""01A"",""stateroomCategoryContentId"":""DD-01A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-ROYAL"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":26496.4,""tax"":502.28,""taxIncluded"":true,""total"":26998.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":10685,""tax"":125.57,""taxIncluded"":true,""total"":10810.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":10685,""tax"":125.57,""taxIncluded"":true,""total"":10810.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":2563.2,""tax"":125.57,""taxIncluded"":true,""total"":2688.77},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":2563.2,""tax"":125.57,""taxIncluded"":true,""total"":2688.77}}}}]",true,"",5,72.5,"28656413","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1323","28656439","5PEF","5_western_caribbean_fort_lauderdale_marvel","GEC,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-03-03","2024-03-08",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DD-11B"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4314,""tax"":502.28,""taxIncluded"":true,""total"":4816.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1365,""tax"":125.57,""taxIncluded"":true,""total"":1490.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1365,""tax"":125.57,""taxIncluded"":true,""total"":1490.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":792,""tax"":125.57,""taxIncluded"":true,""total"":917.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":792,""tax"":125.57,""taxIncluded"":true,""total"":917.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DD-09C"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4494,""tax"":502.28,""taxIncluded"":true,""total"":4996.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1455,""tax"":125.57,""taxIncluded"":true,""total"":1580.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1455,""tax"":125.57,""taxIncluded"":true,""total"":1580.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":792,""tax"":125.57,""taxIncluded"":true,""total"":917.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":792,""tax"":125.57,""taxIncluded"":true,""total"":917.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4794,""tax"":502.28,""taxIncluded"":true,""total"":5296.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1605,""tax"":125.57,""taxIncluded"":true,""total"":1730.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1605,""tax"":125.57,""taxIncluded"":true,""total"":1730.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":792,""tax"":125.57,""taxIncluded"":true,""total"":917.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":792,""tax"":125.57,""taxIncluded"":true,""total"":917.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":8986,""tax"":502.28,""taxIncluded"":true,""total"":9488.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3245,""tax"":125.57,""taxIncluded"":true,""total"":3370.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3245,""tax"":125.57,""taxIncluded"":true,""total"":3370.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1248,""tax"":125.57,""taxIncluded"":true,""total"":1373.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1248,""tax"":125.57,""taxIncluded"":true,""total"":1373.57}}}}]",true,"",5,72.5,"28656439","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1312","28656405","5PEF","5_western_caribbean_fort_lauderdale_marvel","CZM,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-01-12","2024-01-17",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3750,""tax"":592.12,""taxIncluded"":true,""total"":4342.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1155,""tax"":148.03,""taxIncluded"":true,""total"":1303.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1155,""tax"":148.03,""taxIncluded"":true,""total"":1303.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DD-09D"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3920,""tax"":592.12,""taxIncluded"":true,""total"":4512.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1240,""tax"":148.03,""taxIncluded"":true,""total"":1388.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1240,""tax"":148.03,""taxIncluded"":true,""total"":1388.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06B"",""stateroomCategoryContentId"":""DD-06B"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4250,""tax"":592.12,""taxIncluded"":true,""total"":4842.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1405,""tax"":148.03,""taxIncluded"":true,""total"":1553.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1405,""tax"":148.03,""taxIncluded"":true,""total"":1553.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7997.6,""tax"":592.12,""taxIncluded"":true,""total"":8589.72},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2890,""tax"":148.03,""taxIncluded"":true,""total"":3038.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2890,""tax"":148.03,""taxIncluded"":true,""total"":3038.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1108.8,""tax"":148.03,""taxIncluded"":true,""total"":1256.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1108.8,""tax"":148.03,""taxIncluded"":true,""total"":1256.83}}}}]",true,"",5,72.5,"28656405","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1315","28656408","5PEF","5_western_caribbean_fort_lauderdale_marvel","CZM,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-01-26","2024-01-31",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3750,""tax"":592.12,""taxIncluded"":true,""total"":4342.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1155,""tax"":148.03,""taxIncluded"":true,""total"":1303.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1155,""tax"":148.03,""taxIncluded"":true,""total"":1303.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DD-09D"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3920,""tax"":592.12,""taxIncluded"":true,""total"":4512.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1240,""tax"":148.03,""taxIncluded"":true,""total"":1388.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1240,""tax"":148.03,""taxIncluded"":true,""total"":1388.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4210,""tax"":592.12,""taxIncluded"":true,""total"":4802.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1385,""tax"":148.03,""taxIncluded"":true,""total"":1533.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1385,""tax"":148.03,""taxIncluded"":true,""total"":1533.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7829.6,""tax"":592.12,""taxIncluded"":true,""total"":8421.72},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2830,""tax"":148.03,""taxIncluded"":true,""total"":2978.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2830,""tax"":148.03,""taxIncluded"":true,""total"":2978.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1084.8,""tax"":148.03,""taxIncluded"":true,""total"":1232.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1084.8,""tax"":148.03,""taxIncluded"":true,""total"":1232.83}}}}]",true,"",5,72.5,"28656408","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1318","28656411","5PEF","5_western_caribbean_fort_lauderdale_marvel","CZM,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-02-09","2024-02-14",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DD-11B"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3770,""tax"":592.12,""taxIncluded"":true,""total"":4362.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1165,""tax"":148.03,""taxIncluded"":true,""total"":1313.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1165,""tax"":148.03,""taxIncluded"":true,""total"":1313.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DD-09D"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3920,""tax"":592.12,""taxIncluded"":true,""total"":4512.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1240,""tax"":148.03,""taxIncluded"":true,""total"":1388.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1240,""tax"":148.03,""taxIncluded"":true,""total"":1388.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4210,""tax"":592.12,""taxIncluded"":true,""total"":4802.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1385,""tax"":148.03,""taxIncluded"":true,""total"":1533.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1385,""tax"":148.03,""taxIncluded"":true,""total"":1533.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":148.03,""taxIncluded"":true,""total"":868.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":8165.6,""tax"":592.12,""taxIncluded"":true,""total"":8757.72},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2950,""tax"":148.03,""taxIncluded"":true,""total"":3098.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2950,""tax"":148.03,""taxIncluded"":true,""total"":3098.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1132.8,""tax"":148.03,""taxIncluded"":true,""total"":1280.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1132.8,""tax"":148.03,""taxIncluded"":true,""total"":1280.83}}}}]",true,"",5,72.5,"28656411","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1321","28656414","5PEF","5_western_caribbean_fort_lauderdale_marvel","CZM,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-02-23","2024-02-28",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4055.6,""tax"":592.12,""taxIncluded"":true,""total"":4647.72},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1255,""tax"":148.03,""taxIncluded"":true,""total"":1403.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1255,""tax"":148.03,""taxIncluded"":true,""total"":1403.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":772.8,""tax"":148.03,""taxIncluded"":true,""total"":920.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":772.8,""tax"":148.03,""taxIncluded"":true,""total"":920.83}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DD-09D"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4225.6,""tax"":592.12,""taxIncluded"":true,""total"":4817.72},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1340,""tax"":148.03,""taxIncluded"":true,""total"":1488.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1340,""tax"":148.03,""taxIncluded"":true,""total"":1488.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":772.8,""tax"":148.03,""taxIncluded"":true,""total"":920.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":772.8,""tax"":148.03,""taxIncluded"":true,""total"":920.83}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4505.6,""tax"":592.12,""taxIncluded"":true,""total"":5097.72},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1480,""tax"":148.03,""taxIncluded"":true,""total"":1628.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1480,""tax"":148.03,""taxIncluded"":true,""total"":1628.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":772.8,""tax"":148.03,""taxIncluded"":true,""total"":920.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":772.8,""tax"":148.03,""taxIncluded"":true,""total"":920.83}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":8719.2,""tax"":592.12,""taxIncluded"":true,""total"":9311.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3150,""tax"":148.03,""taxIncluded"":true,""total"":3298.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3150,""tax"":148.03,""taxIncluded"":true,""total"":3298.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1209.6,""tax"":148.03,""taxIncluded"":true,""total"":1357.63},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1209.6,""tax"":148.03,""taxIncluded"":true,""total"":1357.63}}}}]",true,"",5,72.5,"28656414","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1324","28656440","5PEF","5_western_caribbean_fort_lauderdale_marvel","CZM,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-03-08","2024-03-13",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4652.8,""tax"":592.12,""taxIncluded"":true,""total"":5244.92},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1400,""tax"":148.03,""taxIncluded"":true,""total"":1548.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1400,""tax"":148.03,""taxIncluded"":true,""total"":1548.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":926.4,""tax"":148.03,""taxIncluded"":true,""total"":1074.43},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":926.4,""tax"":148.03,""taxIncluded"":true,""total"":1074.43}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DD-09C"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4842.8,""tax"":592.12,""taxIncluded"":true,""total"":5434.92},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1495,""tax"":148.03,""taxIncluded"":true,""total"":1643.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1495,""tax"":148.03,""taxIncluded"":true,""total"":1643.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":926.4,""tax"":148.03,""taxIncluded"":true,""total"":1074.43},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":926.4,""tax"":148.03,""taxIncluded"":true,""total"":1074.43}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5122.8,""tax"":592.12,""taxIncluded"":true,""total"":5714.92},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1635,""tax"":148.03,""taxIncluded"":true,""total"":1783.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1635,""tax"":148.03,""taxIncluded"":true,""total"":1783.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":926.4,""tax"":148.03,""taxIncluded"":true,""total"":1074.43},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":926.4,""tax"":148.03,""taxIncluded"":true,""total"":1074.43}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":9520,""tax"":592.12,""taxIncluded"":true,""total"":10112.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3440,""tax"":148.03,""taxIncluded"":true,""total"":3588.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3440,""tax"":148.03,""taxIncluded"":true,""total"":3588.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1320,""tax"":148.03,""taxIncluded"":true,""total"":1468.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1320,""tax"":148.03,""taxIncluded"":true,""total"":1468.03}}}}]",true,"",5,72.5,"28656440","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1310","28656403","5PEF","5_western_fort_lauderdale","GEC,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-01-02","2024-01-07",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DD-11B"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5438.8,""tax"":502.28,""taxIncluded"":true,""total"":5941.08},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1745,""tax"":125.57,""taxIncluded"":true,""total"":1870.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1745,""tax"":125.57,""taxIncluded"":true,""total"":1870.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":974.4,""tax"":125.57,""taxIncluded"":true,""total"":1099.97},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":974.4,""tax"":125.57,""taxIncluded"":true,""total"":1099.97}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DD-09C"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5708.8,""tax"":502.28,""taxIncluded"":true,""total"":6211.08},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1880,""tax"":125.57,""taxIncluded"":true,""total"":2005.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1880,""tax"":125.57,""taxIncluded"":true,""total"":2005.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":974.4,""tax"":125.57,""taxIncluded"":true,""total"":1099.97},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":974.4,""tax"":125.57,""taxIncluded"":true,""total"":1099.97}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""05B"",""stateroomCategoryContentId"":""DD-05B"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":6368.8,""tax"":502.28,""taxIncluded"":true,""total"":6871.08},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2210,""tax"":125.57,""taxIncluded"":true,""total"":2335.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2210,""tax"":125.57,""taxIncluded"":true,""total"":2335.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":974.4,""tax"":125.57,""taxIncluded"":true,""total"":1099.97},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":974.4,""tax"":125.57,""taxIncluded"":true,""total"":1099.97}}}},{""accessible"":false,""communicative"":false,""available"":false,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE"",""stateroomCategory"":null,""stateroomCategoryContentId"":null,""stateroomSubTypeContentId"":""DD-SUITE"",""price"":{""rateType"":null,""promoCode"":null,""summary"":null,""breakdownByGuest"":null}}]",true,"",5,72.5,"28656403","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1329","28656445","5PEF","5_western_fort_lauderdale","GEC,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-03-31","2024-04-05",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":6922.8,""tax"":502.28,""taxIncluded"":true,""total"":7425.08},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2055,""tax"":125.57,""taxIncluded"":true,""total"":2180.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2055,""tax"":125.57,""taxIncluded"":true,""total"":2180.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1406.4,""tax"":125.57,""taxIncluded"":true,""total"":1531.97},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1406.4,""tax"":125.57,""taxIncluded"":true,""total"":1531.97}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DD-09C"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7232.8,""tax"":502.28,""taxIncluded"":true,""total"":7735.08},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2210,""tax"":125.57,""taxIncluded"":true,""total"":2335.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2210,""tax"":125.57,""taxIncluded"":true,""total"":2335.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1406.4,""tax"":125.57,""taxIncluded"":true,""total"":1531.97},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1406.4,""tax"":125.57,""taxIncluded"":true,""total"":1531.97}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":7492.8,""tax"":502.28,""taxIncluded"":true,""total"":7995.08},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2340,""tax"":125.57,""taxIncluded"":true,""total"":2465.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2340,""tax"":125.57,""taxIncluded"":true,""total"":2465.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1406.4,""tax"":125.57,""taxIncluded"":true,""total"":1531.97},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1406.4,""tax"":125.57,""taxIncluded"":true,""total"":1531.97}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":13642.4,""tax"":502.28,""taxIncluded"":true,""total"":14144.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":4930,""tax"":125.57,""taxIncluded"":true,""total"":5055.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":4930,""tax"":125.57,""taxIncluded"":true,""total"":5055.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1891.2,""tax"":125.57,""taxIncluded"":true,""total"":2016.77},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1891.2,""tax"":125.57,""taxIncluded"":true,""total"":2016.77}}}}]",true,"",5,72.5,"28656445","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1336","28656579","5PEF","5_western_fort_lauderdale","GEC,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-04-26","2024-05-01",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3960,""tax"":502.28,""taxIncluded"":true,""total"":4462.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1260,""tax"":125.57,""taxIncluded"":true,""total"":1385.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1260,""tax"":125.57,""taxIncluded"":true,""total"":1385.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09B"",""stateroomCategoryContentId"":""DD-09B"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4190,""tax"":502.28,""taxIncluded"":true,""total"":4692.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1375,""tax"":125.57,""taxIncluded"":true,""total"":1500.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1375,""tax"":125.57,""taxIncluded"":true,""total"":1500.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06B"",""stateroomCategoryContentId"":""DD-06B"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4460,""tax"":502.28,""taxIncluded"":true,""total"":4962.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1510,""tax"":125.57,""taxIncluded"":true,""total"":1635.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1510,""tax"":125.57,""taxIncluded"":true,""total"":1635.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":720,""tax"":125.57,""taxIncluded"":true,""total"":845.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":8452.4,""tax"":502.28,""taxIncluded"":true,""total"":8954.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3055,""tax"":125.57,""taxIncluded"":true,""total"":3180.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3055,""tax"":125.57,""taxIncluded"":true,""total"":3180.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1171.2,""tax"":125.57,""taxIncluded"":true,""total"":1296.77},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1171.2,""tax"":125.57,""taxIncluded"":true,""total"":1296.77}}}}]",true,"",5,72.5,"28656579","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1290","28387281","5SN","5_bermuda_new_york","KWF","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2023-09-28","2023-10-03",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":3953.6,""tax"":933.72,""taxIncluded"":true,""total"":4887.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1300,""tax"":233.43,""taxIncluded"":true,""total"":1533.43},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1300,""tax"":233.43,""taxIncluded"":true,""total"":1533.43},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":233.43,""taxIncluded"":true,""total"":910.23},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":233.43,""taxIncluded"":true,""total"":910.23}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09B"",""stateroomCategoryContentId"":""DD-09B"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4063.6,""tax"":933.72,""taxIncluded"":true,""total"":4997.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1355,""tax"":233.43,""taxIncluded"":true,""total"":1588.43},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1355,""tax"":233.43,""taxIncluded"":true,""total"":1588.43},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":233.43,""taxIncluded"":true,""total"":910.23},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":233.43,""taxIncluded"":true,""total"":910.23}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""05C"",""stateroomCategoryContentId"":""DD-05C"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4373.6,""tax"":933.72,""taxIncluded"":true,""total"":5307.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1510,""tax"":233.43,""taxIncluded"":true,""total"":1743.43},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1510,""tax"":233.43,""taxIncluded"":true,""total"":1743.43},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":233.43,""taxIncluded"":true,""total"":910.23},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":676.8,""tax"":233.43,""taxIncluded"":true,""total"":910.23}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-ONE-BEDROOM"",""stateroomCategory"":""02B"",""stateroomCategoryContentId"":""DD-02B"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-ONE-BEDROOM"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":11974.4,""tax"":933.72,""taxIncluded"":true,""total"":12908.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":4480,""tax"":233.43,""taxIncluded"":true,""total"":4713.43},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":4480,""tax"":233.43,""taxIncluded"":true,""total"":4713.43},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1507.2,""tax"":233.43,""taxIncluded"":true,""total"":1740.63},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1507.2,""tax"":233.43,""taxIncluded"":true,""total"":1740.63}}}}]",true,"",5,72.5,"28387281","5SN","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DF0637","27143817","6S","6_western_caribbean_port_canaveral_halloween","CZM,GEC,GOC","3143;entityType=ship;destination=dcl","Disney Fantasy","DF","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2023-09-17","2023-09-23",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DF-INSIDE"",""stateroomSubType"":""DF-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DF-11B"",""stateroomSubTypeContentId"":""DF-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4380,""tax"":514.2,""taxIncluded"":true,""total"":4894.2},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1380,""tax"":128.55,""taxIncluded"":true,""total"":1508.55},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1380,""tax"":128.55,""taxIncluded"":true,""total"":1508.55},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":810,""tax"":128.55,""taxIncluded"":true,""total"":938.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":810,""tax"":128.55,""taxIncluded"":true,""total"":938.55}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DF-OUTSIDE"",""stateroomSubType"":""DF-OUTSIDE-DELUXE"",""stateroomCategory"":""09B"",""stateroomCategoryContentId"":""DF-09B"",""stateroomSubTypeContentId"":""DF-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4560,""tax"":514.2,""taxIncluded"":true,""total"":5074.2},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1470,""tax"":128.55,""taxIncluded"":true,""total"":1598.55},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1470,""tax"":128.55,""taxIncluded"":true,""total"":1598.55},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":810,""tax"":128.55,""taxIncluded"":true,""total"":938.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":810,""tax"":128.55,""taxIncluded"":true,""total"":938.55}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DF-VERANDAH"",""stateroomSubType"":""DF-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06B"",""stateroomCategoryContentId"":""DF-06B"",""stateroomSubTypeContentId"":""DF-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4920,""tax"":514.2,""taxIncluded"":true,""total"":5434.2},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1650,""tax"":128.55,""taxIncluded"":true,""total"":1778.55},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1650,""tax"":128.55,""taxIncluded"":true,""total"":1778.55},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":810,""tax"":128.55,""taxIncluded"":true,""total"":938.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":810,""tax"":128.55,""taxIncluded"":true,""total"":938.55}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DF-SUITE"",""stateroomSubType"":""DF-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DF-03A"",""stateroomSubTypeContentId"":""DF-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":9036,""tax"":514.2,""taxIncluded"":true,""total"":9550.2},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3306,""tax"":128.55,""taxIncluded"":true,""total"":3434.55},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3306,""tax"":128.55,""taxIncluded"":true,""total"":3434.55},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1212,""tax"":128.55,""taxIncluded"":true,""total"":1340.55},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1212,""tax"":128.55,""taxIncluded"":true,""total"":1340.55}}}}]",true,"",6,87,"27143817","6S","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","DF-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/verandah/DDDF-Verandah-00-full.jpg?1598963594363","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/verandah/DDDF-Verandah-00-full.jpg?1598963594363","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Fantasy","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DF-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/oceanview/DDDF-Oceanview-00-full.jpg?1590003311203","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/oceanview/DDDF-Oceanview-00-full.jpg?1590003311203","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311204","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311204","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311205","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311205","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Fantasy","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DF-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/inside/DDDF-Inside-00-full.jpg?1598963565554","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/inside/DDDF-Inside-00-full.jpg?1598963565554","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters!
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters!","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Fantasy","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DF-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/concierge/DDDF-Concierge-00-full.jpg?1598963518060","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/concierge/DDDF-Concierge-00-full.jpg?1598963518060","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Fantasy","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services." +"DM1540","28672670","6SG","6_western_caribbean_galveston","CTM,CZM","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2024-01-02","2024-01-08",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4920,""tax"":544.8,""taxIncluded"":true,""total"":5464.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1464,""tax"":136.2,""taxIncluded"":true,""total"":1600.2},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1464,""tax"":136.2,""taxIncluded"":true,""total"":1600.2},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":996,""tax"":136.2,""taxIncluded"":true,""total"":1132.2},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":996,""tax"":136.2,""taxIncluded"":true,""total"":1132.2}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5436,""tax"":544.8,""taxIncluded"":true,""total"":5980.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1674,""tax"":136.2,""taxIncluded"":true,""total"":1810.2},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1674,""tax"":136.2,""taxIncluded"":true,""total"":1810.2},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1044,""tax"":136.2,""taxIncluded"":true,""total"":1180.2},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1044,""tax"":136.2,""taxIncluded"":true,""total"":1180.2}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""05B"",""stateroomCategoryContentId"":""DM-05B"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":6828,""tax"":544.8,""taxIncluded"":true,""total"":7372.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2322,""tax"":136.2,""taxIncluded"":true,""total"":2458.2},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2322,""tax"":136.2,""taxIncluded"":true,""total"":2458.2},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1092,""tax"":136.2,""taxIncluded"":true,""total"":1228.2},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1092,""tax"":136.2,""taxIncluded"":true,""total"":1228.2}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-ONE-BEDROOM"",""stateroomCategory"":""02B"",""stateroomCategoryContentId"":""DM-02B"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-ONE-BEDROOM"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":12372,""tax"":544.8,""taxIncluded"":true,""total"":12916.8},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":4620,""tax"":136.2,""taxIncluded"":true,""total"":4756.2},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":4620,""tax"":136.2,""taxIncluded"":true,""total"":4756.2},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1566,""tax"":136.2,""taxIncluded"":true,""total"":1702.2},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1566,""tax"":136.2,""taxIncluded"":true,""total"":1702.2}}}}]",true,"",6,87,"28672670","6SG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DM1559","28678745","6SG","6_western_caribbean_galveston","CTM,CZM","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2024-03-25","2024-03-31",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4452,""tax"":561.52,""taxIncluded"":true,""total"":5013.52},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1410,""tax"":140.38,""taxIncluded"":true,""total"":1550.38},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1410,""tax"":140.38,""taxIncluded"":true,""total"":1550.38},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":816,""tax"":140.38,""taxIncluded"":true,""total"":956.38},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":816,""tax"":140.38,""taxIncluded"":true,""total"":956.38}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4788,""tax"":561.52,""taxIncluded"":true,""total"":5349.52},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1548,""tax"":140.38,""taxIncluded"":true,""total"":1688.38},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1548,""tax"":140.38,""taxIncluded"":true,""total"":1688.38},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":846,""tax"":140.38,""taxIncluded"":true,""total"":986.38},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":846,""tax"":140.38,""taxIncluded"":true,""total"":986.38}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5760,""tax"":561.52,""taxIncluded"":true,""total"":6321.52},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2004,""tax"":140.38,""taxIncluded"":true,""total"":2144.38},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2004,""tax"":140.38,""taxIncluded"":true,""total"":2144.38},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":876,""tax"":140.38,""taxIncluded"":true,""total"":1016.38},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":876,""tax"":140.38,""taxIncluded"":true,""total"":1016.38}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":10224,""tax"":561.52,""taxIncluded"":true,""total"":10785.52},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3840,""tax"":140.38,""taxIncluded"":true,""total"":3980.38},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3840,""tax"":140.38,""taxIncluded"":true,""total"":3980.38},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1272,""tax"":140.38,""taxIncluded"":true,""total"":1412.38},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1272,""tax"":140.38,""taxIncluded"":true,""total"":1412.38}}}}]",true,"",6,87,"28678745","6SG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1327","28656443","5PEF","5_western_fort_lauderdale","CZM,GOC","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-03-22","2024-03-27",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":6340,""tax"":592.12,""taxIncluded"":true,""total"":6932.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1850,""tax"":148.03,""taxIncluded"":true,""total"":1998.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1850,""tax"":148.03,""taxIncluded"":true,""total"":1998.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1320,""tax"":148.03,""taxIncluded"":true,""total"":1468.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1320,""tax"":148.03,""taxIncluded"":true,""total"":1468.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DD-09D"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":6620,""tax"":592.12,""taxIncluded"":true,""total"":7212.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1990,""tax"":148.03,""taxIncluded"":true,""total"":2138.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1990,""tax"":148.03,""taxIncluded"":true,""total"":2138.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1320,""tax"":148.03,""taxIncluded"":true,""total"":1468.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1320,""tax"":148.03,""taxIncluded"":true,""total"":1468.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":6890,""tax"":592.12,""taxIncluded"":true,""total"":7482.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2125,""tax"":148.03,""taxIncluded"":true,""total"":2273.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":2125,""tax"":148.03,""taxIncluded"":true,""total"":2273.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1320,""tax"":148.03,""taxIncluded"":true,""total"":1468.03},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1320,""tax"":148.03,""taxIncluded"":true,""total"":1468.03}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":12999.6,""tax"":592.12,""taxIncluded"":true,""total"":13591.72},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":4695,""tax"":148.03,""taxIncluded"":true,""total"":4843.03},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":4695,""tax"":148.03,""taxIncluded"":true,""total"":4843.03},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1804.8,""tax"":148.03,""taxIncluded"":true,""total"":1952.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1804.8,""tax"":148.03,""taxIncluded"":true,""total"":1952.83}}}}]",true,"",5,72.5,"28656443","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DM1572","28808724","5PEF","5_western_fort_lauderdale","CZM,GOC","2945;entityType=ship;destination=dcl","Disney Magic","DM","DM-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","jpg","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378","Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view).","DM-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","jpg","Deluxe Oceanview Stateroom – Category 9A","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283","A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283","","","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DM-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","jpg","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645","A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","DM-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","jpg","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605","Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607","","","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Magic","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","2024-05-27","2024-06-01",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-INSIDE"",""stateroomSubType"":""DM-INSIDE-STANDARD"",""stateroomCategory"":""11B"",""stateroomCategoryContentId"":""DM-11B"",""stateroomSubTypeContentId"":""DM-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4502,""tax"":594.28,""taxIncluded"":true,""total"":5096.28},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1315,""tax"":148.57,""taxIncluded"":true,""total"":1463.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1315,""tax"":148.57,""taxIncluded"":true,""total"":1463.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":936,""tax"":148.57,""taxIncluded"":true,""total"":1084.57},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":936,""tax"":148.57,""taxIncluded"":true,""total"":1084.57}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-OUTSIDE"",""stateroomSubType"":""DM-OUTSIDE-DELUXE"",""stateroomCategory"":""09D"",""stateroomCategoryContentId"":""DM-09D"",""stateroomSubTypeContentId"":""DM-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4909.6,""tax"":594.28,""taxIncluded"":true,""total"":5503.88},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1490,""tax"":148.57,""taxIncluded"":true,""total"":1638.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1490,""tax"":148.57,""taxIncluded"":true,""total"":1638.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":964.8,""tax"":148.57,""taxIncluded"":true,""total"":1113.37},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":964.8,""tax"":148.57,""taxIncluded"":true,""total"":1113.37}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-VERANDAH"",""stateroomSubType"":""DM-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""06A"",""stateroomCategoryContentId"":""DM-06A"",""stateroomSubTypeContentId"":""DM-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5884.4,""tax"":594.28,""taxIncluded"":true,""total"":6478.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1915,""tax"":148.57,""taxIncluded"":true,""total"":2063.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1915,""tax"":148.57,""taxIncluded"":true,""total"":2063.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1027.2,""tax"":148.57,""taxIncluded"":true,""total"":1175.77},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1027.2,""tax"":148.57,""taxIncluded"":true,""total"":1175.77}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DM-SUITE"",""stateroomSubType"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DM-03A"",""stateroomSubTypeContentId"":""DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":10496.4,""tax"":594.28,""taxIncluded"":true,""total"":11090.68},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3885,""tax"":148.57,""taxIncluded"":true,""total"":4033.57},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3885,""tax"":148.57,""taxIncluded"":true,""total"":4033.57},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1363.2,""tax"":148.57,""taxIncluded"":true,""total"":1511.77},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1363.2,""tax"":148.57,""taxIncluded"":true,""total"":1511.77}}}}]",true,"",5,72.5,"28808724","5PEF","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1292","28387283","6SN","6_bermuda_new_york_halloween","KWF","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2023-10-07","2023-10-13",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4872.96,""tax"":1061.16,""taxIncluded"":true,""total"":5934.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1584,""tax"":265.29,""taxIncluded"":true,""total"":1849.29},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1584,""tax"":265.29,""taxIncluded"":true,""total"":1849.29},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":852.48,""tax"":265.29,""taxIncluded"":true,""total"":1117.77},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":852.48,""tax"":265.29,""taxIncluded"":true,""total"":1117.77}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09B"",""stateroomCategoryContentId"":""DD-09B"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5004.96,""tax"":1061.16,""taxIncluded"":true,""total"":6066.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1650,""tax"":265.29,""taxIncluded"":true,""total"":1915.29},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1650,""tax"":265.29,""taxIncluded"":true,""total"":1915.29},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":852.48,""tax"":265.29,""taxIncluded"":true,""total"":1117.77},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":852.48,""tax"":265.29,""taxIncluded"":true,""total"":1117.77}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5292.96,""tax"":1061.16,""taxIncluded"":true,""total"":6354.12},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1794,""tax"":265.29,""taxIncluded"":true,""total"":2059.29},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1794,""tax"":265.29,""taxIncluded"":true,""total"":2059.29},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":852.48,""tax"":265.29,""taxIncluded"":true,""total"":1117.77},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":852.48,""tax"":265.29,""taxIncluded"":true,""total"":1117.77}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-ONE-BEDROOM"",""stateroomCategory"":""02B"",""stateroomCategoryContentId"":""DD-02B"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-ONE-BEDROOM"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":14737.44,""tax"":1061.16,""taxIncluded"":true,""total"":15798.6},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":5514,""tax"":265.29,""taxIncluded"":true,""total"":5779.29},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":5514,""tax"":265.29,""taxIncluded"":true,""total"":5779.29},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1854.72,""tax"":265.29,""taxIncluded"":true,""total"":2120.01},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1854.72,""tax"":265.29,""taxIncluded"":true,""total"":2120.01}}}}]",true,"",6,87,"28387283","6SN","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1295","28387286","6SN","6_bermuda_new_york_halloween","KWF","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2023-10-21","2023-10-27",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4543.68,""tax"":1061.16,""taxIncluded"":true,""total"":5604.84},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1500,""tax"":265.29,""taxIncluded"":true,""total"":1765.29},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1500,""tax"":265.29,""taxIncluded"":true,""total"":1765.29},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":771.84,""tax"":265.29,""taxIncluded"":true,""total"":1037.13},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":771.84,""tax"":265.29,""taxIncluded"":true,""total"":1037.13}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DD-09C"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4615.68,""tax"":1061.16,""taxIncluded"":true,""total"":5676.84},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1536,""tax"":265.29,""taxIncluded"":true,""total"":1801.29},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1536,""tax"":265.29,""taxIncluded"":true,""total"":1801.29},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":771.84,""tax"":265.29,""taxIncluded"":true,""total"":1037.13},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":771.84,""tax"":265.29,""taxIncluded"":true,""total"":1037.13}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":4951.68,""tax"":1061.16,""taxIncluded"":true,""total"":6012.84},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1704,""tax"":265.29,""taxIncluded"":true,""total"":1969.29},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1704,""tax"":265.29,""taxIncluded"":true,""total"":1969.29},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":771.84,""tax"":265.29,""taxIncluded"":true,""total"":1037.13},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":771.84,""tax"":265.29,""taxIncluded"":true,""total"":1037.13}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""stateroomCategory"":""03A"",""stateroomCategoryContentId"":""DD-03A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":10296,""tax"":1061.16,""taxIncluded"":true,""total"":11357.16},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3852,""tax"":265.29,""taxIncluded"":true,""total"":4117.29},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":3852,""tax"":265.29,""taxIncluded"":true,""total"":4117.29},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1296,""tax"":265.29,""taxIncluded"":true,""total"":1561.29},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1296,""tax"":265.29,""taxIncluded"":true,""total"":1561.29}}}}]",true,"",6,87,"28387286","6SN","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"DD1326","28656442","5PEF","5_bahamian_fort_lauderdale_dd","GOC,NAS","829;entityType=ship;destination=dcl","Disney Dream","DD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2024-03-17","2024-03-22",true,"","[{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-INSIDE"",""stateroomSubType"":""DD-INSIDE-STANDARD"",""stateroomCategory"":""11C"",""stateroomCategoryContentId"":""DD-11C"",""stateroomSubTypeContentId"":""DD-INSIDE-STANDARD"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5752,""tax"":467.32,""taxIncluded"":true,""total"":6219.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1700,""tax"":116.83,""taxIncluded"":true,""total"":1816.83},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1700,""tax"":116.83,""taxIncluded"":true,""total"":1816.83},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1176,""tax"":116.83,""taxIncluded"":true,""total"":1292.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1176,""tax"":116.83,""taxIncluded"":true,""total"":1292.83}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-OUTSIDE"",""stateroomSubType"":""DD-OUTSIDE-DELUXE"",""stateroomCategory"":""09C"",""stateroomCategoryContentId"":""DD-09C"",""stateroomSubTypeContentId"":""DD-OUTSIDE-DELUXE"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":5952,""tax"":467.32,""taxIncluded"":true,""total"":6419.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1800,""tax"":116.83,""taxIncluded"":true,""total"":1916.83},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1800,""tax"":116.83,""taxIncluded"":true,""total"":1916.83},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1176,""tax"":116.83,""taxIncluded"":true,""total"":1292.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1176,""tax"":116.83,""taxIncluded"":true,""total"":1292.83}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-VERANDAH"",""stateroomSubType"":""DD-VERANDAH-DELUXEOCEANVIEW"",""stateroomCategory"":""07A"",""stateroomCategoryContentId"":""DD-07A"",""stateroomSubTypeContentId"":""DD-VERANDAH-DELUXEOCEANVIEW"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":6212,""tax"":467.32,""taxIncluded"":true,""total"":6679.32},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1930,""tax"":116.83,""taxIncluded"":true,""total"":2046.83},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":1930,""tax"":116.83,""taxIncluded"":true,""total"":2046.83},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1176,""tax"":116.83,""taxIncluded"":true,""total"":1292.83},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":1176,""tax"":116.83,""taxIncluded"":true,""total"":1292.83}}}},{""accessible"":false,""communicative"":false,""available"":true,""stateroomType"":""DD-SUITE"",""stateroomSubType"":""DD-SUITE-CONCIERGE-ROYAL"",""stateroomCategory"":""01A"",""stateroomCategoryContentId"":""DD-01A"",""stateroomSubTypeContentId"":""DD-SUITE-CONCIERGE-ROYAL"",""price"":{""rateType"":""rack"",""promoCode"":""EBS"",""summary"":{""currency"":""USD"",""subtotal"":30355.2,""tax"":467.32,""taxIncluded"":true,""total"":30822.52},""breakdownByGuest"":{""1"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":12240,""tax"":116.83,""taxIncluded"":true,""total"":12356.83},""2"":{""ageGroup"":""ADULT"",""currency"":""USD"",""subtotal"":12240,""tax"":116.83,""taxIncluded"":true,""total"":12356.83},""3"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":2937.6,""tax"":116.83,""taxIncluded"":true,""total"":3054.43},""4"":{""ageGroup"":""CHILD"",""currency"":""USD"",""subtotal"":2937.6,""tax"":116.83,""taxIncluded"":true,""total"":3054.43}}}}]",true,"",5,72.5,"28656442","5PEF","DD-INSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Inside",1,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","jpg","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737","Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738","","","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
","webDescription","A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters.","DD-VERANDAH;entityType=stateroom-type;destination=dcl","stateroom-type","Verandah",3,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","jpg","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634","Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636","","","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views).","DD-OUTSIDE;entityType=stateroom-type;destination=dcl","stateroom-type","Oceanview",2,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","jpg","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210","Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211","","","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
","webDescription","A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!","DD-SUITE;entityType=stateroom-type;destination=dcl","stateroom-type","Concierge",4,"https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","jpg","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759","Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","jpg","","https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761","","","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
","webDescription","For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.","","Null","webDescription","View Prices","Search for Cruises Aboard the Disney Dream","","","webDescription","Our most luxurious accommodations feature a large private verandah and premium amenities and services.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" \ No newline at end of file diff --git a/sailings.json b/sailings.json new file mode 100644 index 0000000..b705c10 --- /dev/null +++ b/sailings.json @@ -0,0 +1,16265 @@ +[ + { + "sailingId": "DM1563", + "packageId": "28684242", + "packageCode": "6RGJ", + "productId": "6_western_caribbean_galveston_san_juan", + "itineraryId": "CZM,FMH,GEC,SJU", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-04-14", + "sailDateTo": "2024-04-20", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 2929.92, + "tax": 638, + "taxIncluded": true, + "total": 3567.92 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 912, + "tax": 159.5, + "taxIncluded": true, + "total": 1071.5 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 912, + "tax": 159.5, + "taxIncluded": true, + "total": 1071.5 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 552.96, + "tax": 159.5, + "taxIncluded": true, + "total": 712.46 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 552.96, + "tax": 159.5, + "taxIncluded": true, + "total": 712.46 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3179.52, + "tax": 638, + "taxIncluded": true, + "total": 3817.52 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1008, + "tax": 159.5, + "taxIncluded": true, + "total": 1167.5 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1008, + "tax": 159.5, + "taxIncluded": true, + "total": 1167.5 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 581.76, + "tax": 159.5, + "taxIncluded": true, + "total": 741.26 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 581.76, + "tax": 159.5, + "taxIncluded": true, + "total": 741.26 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3861.12, + "tax": 638, + "taxIncluded": true, + "total": 4499.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1320, + "tax": 159.5, + "taxIncluded": true, + "total": 1479.5 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1320, + "tax": 159.5, + "taxIncluded": true, + "total": 1479.5 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 610.56, + "tax": 159.5, + "taxIncluded": true, + "total": 770.06 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 610.56, + "tax": 159.5, + "taxIncluded": true, + "total": 770.06 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7826.88, + "tax": 638, + "taxIncluded": true, + "total": 8464.88 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2940, + "tax": 159.5, + "taxIncluded": true, + "total": 3099.5 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2940, + "tax": 159.5, + "taxIncluded": true, + "total": 3099.5 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 973.44, + "tax": 159.5, + "taxIncluded": true, + "total": 1132.94 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 973.44, + "tax": 159.5, + "taxIncluded": true, + "total": 1132.94 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 6, + "gratuitiesRate": 87, + "package": { + "packageID": "28684242", + "packageCode": "6RGJ" + } + }, + { + "sailingId": "DM1566", + "packageId": "28808718", + "packageCode": "5SJPE", + "productId": "5_eastern_caribbean_san_juan_fort_lauderdale", + "itineraryId": "GOC,NAS,PEF,STT", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-05-04", + "sailDateTo": "2024-05-09", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3120.8, + "tax": 459, + "taxIncluded": true, + "total": 3579.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 970, + "tax": 114.75, + "taxIncluded": true, + "total": 1084.75 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 970, + "tax": 114.75, + "taxIncluded": true, + "total": 1084.75 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 590.4, + "tax": 114.75, + "taxIncluded": true, + "total": 705.15 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 590.4, + "tax": 114.75, + "taxIncluded": true, + "total": 705.15 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3258.8, + "tax": 459, + "taxIncluded": true, + "total": 3717.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1015, + "tax": 114.75, + "taxIncluded": true, + "total": 1129.75 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1015, + "tax": 114.75, + "taxIncluded": true, + "total": 1129.75 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 614.4, + "tax": 114.75, + "taxIncluded": true, + "total": 729.15 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 614.4, + "tax": 114.75, + "taxIncluded": true, + "total": 729.15 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3926.8, + "tax": 459, + "taxIncluded": true, + "total": 4385.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1325, + "tax": 114.75, + "taxIncluded": true, + "total": 1439.75 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1325, + "tax": 114.75, + "taxIncluded": true, + "total": 1439.75 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 638.4, + "tax": 114.75, + "taxIncluded": true, + "total": 753.15 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 638.4, + "tax": 114.75, + "taxIncluded": true, + "total": 753.15 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7583.6, + "tax": 459, + "taxIncluded": true, + "total": 8042.6 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2875, + "tax": 114.75, + "taxIncluded": true, + "total": 2989.75 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2875, + "tax": 114.75, + "taxIncluded": true, + "total": 2989.75 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 916.8, + "tax": 114.75, + "taxIncluded": true, + "total": 1031.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 916.8, + "tax": 114.75, + "taxIncluded": true, + "total": 1031.55 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28808718", + "packageCode": "5SJPE" + } + }, + { + "sailingId": "DM1542", + "packageId": "28672672", + "packageCode": "5SG", + "productId": "5_western_caribbean_galveston", + "itineraryId": "CZM,PGO", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-01-12", + "sailDateTo": "2024-01-17", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3562.8, + "tax": 520.6, + "taxIncluded": true, + "total": 4083.4 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1095, + "tax": 130.15, + "taxIncluded": true, + "total": 1225.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1095, + "tax": 130.15, + "taxIncluded": true, + "total": 1225.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 686.4, + "tax": 130.15, + "taxIncluded": true, + "total": 816.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 686.4, + "tax": 130.15, + "taxIncluded": true, + "total": 816.55 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3810.8, + "tax": 520.6, + "taxIncluded": true, + "total": 4331.4 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1195, + "tax": 130.15, + "taxIncluded": true, + "total": 1325.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1195, + "tax": 130.15, + "taxIncluded": true, + "total": 1325.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 710.4, + "tax": 130.15, + "taxIncluded": true, + "total": 840.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 710.4, + "tax": 130.15, + "taxIncluded": true, + "total": 840.55 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4228.8, + "tax": 520.6, + "taxIncluded": true, + "total": 4749.4 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1380, + "tax": 130.15, + "taxIncluded": true, + "total": 1510.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1380, + "tax": 130.15, + "taxIncluded": true, + "total": 1510.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 734.4, + "tax": 130.15, + "taxIncluded": true, + "total": 864.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 734.4, + "tax": 130.15, + "taxIncluded": true, + "total": 864.55 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7343.2, + "tax": 520.6, + "taxIncluded": true, + "total": 7863.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2750, + "tax": 130.15, + "taxIncluded": true, + "total": 2880.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2750, + "tax": 130.15, + "taxIncluded": true, + "total": 2880.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 921.6, + "tax": 130.15, + "taxIncluded": true, + "total": 1051.75 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 921.6, + "tax": 130.15, + "taxIncluded": true, + "total": 1051.75 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28672672", + "packageCode": "5SG" + } + }, + { + "sailingId": "DM1544", + "packageId": "28672674", + "packageCode": "5SG", + "productId": "5_western_caribbean_galveston", + "itineraryId": "CZM,PGO", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-01-21", + "sailDateTo": "2024-01-26", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3168.4, + "tax": 520.6, + "taxIncluded": true, + "total": 3689 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 965, + "tax": 130.15, + "taxIncluded": true, + "total": 1095.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 965, + "tax": 130.15, + "taxIncluded": true, + "total": 1095.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 619.2, + "tax": 130.15, + "taxIncluded": true, + "total": 749.35 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 619.2, + "tax": 130.15, + "taxIncluded": true, + "total": 749.35 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3446.4, + "tax": 520.6, + "taxIncluded": true, + "total": 3967 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1080, + "tax": 130.15, + "taxIncluded": true, + "total": 1210.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1080, + "tax": 130.15, + "taxIncluded": true, + "total": 1210.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 643.2, + "tax": 130.15, + "taxIncluded": true, + "total": 773.35 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 643.2, + "tax": 130.15, + "taxIncluded": true, + "total": 773.35 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3874.4, + "tax": 520.6, + "taxIncluded": true, + "total": 4395 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1270, + "tax": 130.15, + "taxIncluded": true, + "total": 1400.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1270, + "tax": 130.15, + "taxIncluded": true, + "total": 1400.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 667.2, + "tax": 130.15, + "taxIncluded": true, + "total": 797.35 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 667.2, + "tax": 130.15, + "taxIncluded": true, + "total": 797.35 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 6412.8, + "tax": 520.6, + "taxIncluded": true, + "total": 6933.4 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2400, + "tax": 130.15, + "taxIncluded": true, + "total": 2530.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2400, + "tax": 130.15, + "taxIncluded": true, + "total": 2530.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 806.4, + "tax": 130.15, + "taxIncluded": true, + "total": 936.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 806.4, + "tax": 130.15, + "taxIncluded": true, + "total": 936.55 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28672674", + "packageCode": "5SG" + } + }, + { + "sailingId": "DM1561", + "packageId": "28678747", + "packageCode": "5SG", + "productId": "5_western_caribbean_galveston", + "itineraryId": "CZM,PGO", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-04-04", + "sailDateTo": "2024-04-09", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3631.6, + "tax": 520.6, + "taxIncluded": true, + "total": 4152.2 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1115, + "tax": 130.15, + "taxIncluded": true, + "total": 1245.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1115, + "tax": 130.15, + "taxIncluded": true, + "total": 1245.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 700.8, + "tax": 130.15, + "taxIncluded": true, + "total": 830.95 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 700.8, + "tax": 130.15, + "taxIncluded": true, + "total": 830.95 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3889.6, + "tax": 520.6, + "taxIncluded": true, + "total": 4410.2 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1220, + "tax": 130.15, + "taxIncluded": true, + "total": 1350.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1220, + "tax": 130.15, + "taxIncluded": true, + "total": 1350.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 724.8, + "tax": 130.15, + "taxIncluded": true, + "total": 854.95 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 724.8, + "tax": 130.15, + "taxIncluded": true, + "total": 854.95 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4317.6, + "tax": 520.6, + "taxIncluded": true, + "total": 4838.2 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1410, + "tax": 130.15, + "taxIncluded": true, + "total": 1540.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1410, + "tax": 130.15, + "taxIncluded": true, + "total": 1540.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 748.8, + "tax": 130.15, + "taxIncluded": true, + "total": 878.95 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 748.8, + "tax": 130.15, + "taxIncluded": true, + "total": 878.95 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7491.6, + "tax": 520.6, + "taxIncluded": true, + "total": 8012.2 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2805, + "tax": 130.15, + "taxIncluded": true, + "total": 2935.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2805, + "tax": 130.15, + "taxIncluded": true, + "total": 2935.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 940.8, + "tax": 130.15, + "taxIncluded": true, + "total": 1070.95 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 940.8, + "tax": 130.15, + "taxIncluded": true, + "total": 1070.95 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28678747", + "packageCode": "5SG" + } + }, + { + "sailingId": "DM1562", + "packageId": "28684241", + "packageCode": "5SG", + "productId": "5_western_caribbean_galveston", + "itineraryId": "CZM,PGO", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-04-09", + "sailDateTo": "2024-04-14", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3261.2, + "tax": 520.6, + "taxIncluded": true, + "total": 3781.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1045, + "tax": 130.15, + "taxIncluded": true, + "total": 1175.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1045, + "tax": 130.15, + "taxIncluded": true, + "total": 1175.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 585.6, + "tax": 130.15, + "taxIncluded": true, + "total": 715.75 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 585.6, + "tax": 130.15, + "taxIncluded": true, + "total": 715.75 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3519.2, + "tax": 520.6, + "taxIncluded": true, + "total": 4039.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1150, + "tax": 130.15, + "taxIncluded": true, + "total": 1280.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1150, + "tax": 130.15, + "taxIncluded": true, + "total": 1280.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 609.6, + "tax": 130.15, + "taxIncluded": true, + "total": 739.75 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 609.6, + "tax": 130.15, + "taxIncluded": true, + "total": 739.75 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4107.2, + "tax": 520.6, + "taxIncluded": true, + "total": 4627.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1420, + "tax": 130.15, + "taxIncluded": true, + "total": 1550.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1420, + "tax": 130.15, + "taxIncluded": true, + "total": 1550.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 633.6, + "tax": 130.15, + "taxIncluded": true, + "total": 763.75 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 633.6, + "tax": 130.15, + "taxIncluded": true, + "total": 763.75 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7312.8, + "tax": 520.6, + "taxIncluded": true, + "total": 7833.4 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2730, + "tax": 130.15, + "taxIncluded": true, + "total": 2860.15 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2730, + "tax": 130.15, + "taxIncluded": true, + "total": 2860.15 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 926.4, + "tax": 130.15, + "taxIncluded": true, + "total": 1056.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 926.4, + "tax": 130.15, + "taxIncluded": true, + "total": 1056.55 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28684241", + "packageCode": "5SG" + } + }, + { + "sailingId": "DM1548", + "packageId": "28672678", + "packageCode": "5SY", + "productId": "5_western_caribbean_new_orleans", + "itineraryId": "CZM,PGO", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-02-04", + "sailDateTo": "2024-02-09", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3198.4, + "tax": 514.88, + "taxIncluded": true, + "total": 3713.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 980, + "tax": 128.72, + "taxIncluded": true, + "total": 1108.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 980, + "tax": 128.72, + "taxIncluded": true, + "total": 1108.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 619.2, + "tax": 128.72, + "taxIncluded": true, + "total": 747.92 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 619.2, + "tax": 128.72, + "taxIncluded": true, + "total": 747.92 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3586.4, + "tax": 514.88, + "taxIncluded": true, + "total": 4101.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1150, + "tax": 128.72, + "taxIncluded": true, + "total": 1278.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1150, + "tax": 128.72, + "taxIncluded": true, + "total": 1278.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 643.2, + "tax": 128.72, + "taxIncluded": true, + "total": 771.92 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 643.2, + "tax": 128.72, + "taxIncluded": true, + "total": 771.92 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3994.4, + "tax": 514.88, + "taxIncluded": true, + "total": 4509.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1330, + "tax": 128.72, + "taxIncluded": true, + "total": 1458.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1330, + "tax": 128.72, + "taxIncluded": true, + "total": 1458.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 667.2, + "tax": 128.72, + "taxIncluded": true, + "total": 795.92 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 667.2, + "tax": 128.72, + "taxIncluded": true, + "total": 795.92 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 6590.8, + "tax": 514.88, + "taxIncluded": true, + "total": 7105.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2465, + "tax": 128.72, + "taxIncluded": true, + "total": 2593.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2465, + "tax": 128.72, + "taxIncluded": true, + "total": 2593.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 830.4, + "tax": 128.72, + "taxIncluded": true, + "total": 959.12 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 830.4, + "tax": 128.72, + "taxIncluded": true, + "total": 959.12 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28672678", + "packageCode": "5SY" + } + }, + { + "sailingId": "DM1550", + "packageId": "28672680", + "packageCode": "5SY", + "productId": "5_western_caribbean_new_orleans", + "itineraryId": "CZM,PGO", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-02-16", + "sailDateTo": "2024-02-21", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3473.6, + "tax": 514.88, + "taxIncluded": true, + "total": 3988.48 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1060, + "tax": 128.72, + "taxIncluded": true, + "total": 1188.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1060, + "tax": 128.72, + "taxIncluded": true, + "total": 1188.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 128.72, + "taxIncluded": true, + "total": 805.52 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 128.72, + "taxIncluded": true, + "total": 805.52 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3901.6, + "tax": 514.88, + "taxIncluded": true, + "total": 4416.48 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1250, + "tax": 128.72, + "taxIncluded": true, + "total": 1378.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1250, + "tax": 128.72, + "taxIncluded": true, + "total": 1378.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 700.8, + "tax": 128.72, + "taxIncluded": true, + "total": 829.52 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 700.8, + "tax": 128.72, + "taxIncluded": true, + "total": 829.52 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4329.6, + "tax": 514.88, + "taxIncluded": true, + "total": 4844.48 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1440, + "tax": 128.72, + "taxIncluded": true, + "total": 1568.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1440, + "tax": 128.72, + "taxIncluded": true, + "total": 1568.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 724.8, + "tax": 128.72, + "taxIncluded": true, + "total": 853.52 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 724.8, + "tax": 128.72, + "taxIncluded": true, + "total": 853.52 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7145.2, + "tax": 514.88, + "taxIncluded": true, + "total": 7660.08 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2675, + "tax": 128.72, + "taxIncluded": true, + "total": 2803.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2675, + "tax": 128.72, + "taxIncluded": true, + "total": 2803.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 897.6, + "tax": 128.72, + "taxIncluded": true, + "total": 1026.32 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 897.6, + "tax": 128.72, + "taxIncluded": true, + "total": 1026.32 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28672680", + "packageCode": "5SY" + } + }, + { + "sailingId": "DM1551", + "packageId": "28672681", + "packageCode": "5SY", + "productId": "5_western_caribbean_new_orleans", + "itineraryId": "CZM,PGO", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-02-21", + "sailDateTo": "2024-02-26", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3316.8, + "tax": 514.88, + "taxIncluded": true, + "total": 3831.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1020, + "tax": 128.72, + "taxIncluded": true, + "total": 1148.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1020, + "tax": 128.72, + "taxIncluded": true, + "total": 1148.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 638.4, + "tax": 128.72, + "taxIncluded": true, + "total": 767.12 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 638.4, + "tax": 128.72, + "taxIncluded": true, + "total": 767.12 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3754.8, + "tax": 514.88, + "taxIncluded": true, + "total": 4269.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1215, + "tax": 128.72, + "taxIncluded": true, + "total": 1343.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1215, + "tax": 128.72, + "taxIncluded": true, + "total": 1343.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 662.4, + "tax": 128.72, + "taxIncluded": true, + "total": 791.12 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 662.4, + "tax": 128.72, + "taxIncluded": true, + "total": 791.12 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4192.8, + "tax": 514.88, + "taxIncluded": true, + "total": 4707.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1410, + "tax": 128.72, + "taxIncluded": true, + "total": 1538.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1410, + "tax": 128.72, + "taxIncluded": true, + "total": 1538.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 686.4, + "tax": 128.72, + "taxIncluded": true, + "total": 815.12 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 686.4, + "tax": 128.72, + "taxIncluded": true, + "total": 815.12 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7006.4, + "tax": 514.88, + "taxIncluded": true, + "total": 7521.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2620, + "tax": 128.72, + "taxIncluded": true, + "total": 2748.72 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2620, + "tax": 128.72, + "taxIncluded": true, + "total": 2748.72 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 883.2, + "tax": 128.72, + "taxIncluded": true, + "total": 1011.92 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 883.2, + "tax": 128.72, + "taxIncluded": true, + "total": 1011.92 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28672681", + "packageCode": "5SY" + } + }, + { + "sailingId": "DM1523", + "packageId": "28000028", + "packageCode": "5SI", + "productId": "5_western_caribbean_miami_halloween", + "itineraryId": "GEC,GOC", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2023-09-30", + "sailDateTo": "2023-10-05", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11A", + "stateroomCategoryContentId": "DM-11A", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3700, + "tax": 515.24, + "taxIncluded": true, + "total": 4215.24 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1140, + "tax": 128.81, + "taxIncluded": true, + "total": 1268.81 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1140, + "tax": 128.81, + "taxIncluded": true, + "total": 1268.81 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 710, + "tax": 128.81, + "taxIncluded": true, + "total": 838.81 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 710, + "tax": 128.81, + "taxIncluded": true, + "total": 838.81 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DM-09C", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3970, + "tax": 515.24, + "taxIncluded": true, + "total": 4485.24 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1250, + "tax": 128.81, + "taxIncluded": true, + "total": 1378.81 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1250, + "tax": 128.81, + "taxIncluded": true, + "total": 1378.81 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 735, + "tax": 128.81, + "taxIncluded": true, + "total": 863.81 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 735, + "tax": 128.81, + "taxIncluded": true, + "total": 863.81 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEFAMILY", + "stateroomCategory": "04E", + "stateroomCategoryContentId": "DM-04E", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEFAMILY", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5670, + "tax": 515.24, + "taxIncluded": true, + "total": 6185.24 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2045, + "tax": 128.81, + "taxIncluded": true, + "total": 2173.81 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2045, + "tax": 128.81, + "taxIncluded": true, + "total": 2173.81 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 790, + "tax": 128.81, + "taxIncluded": true, + "total": 918.81 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 790, + "tax": 128.81, + "taxIncluded": true, + "total": 918.81 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7800, + "tax": 515.24, + "taxIncluded": true, + "total": 8315.24 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2925, + "tax": 128.81, + "taxIncluded": true, + "total": 3053.81 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2925, + "tax": 128.81, + "taxIncluded": true, + "total": 3053.81 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 975, + "tax": 128.81, + "taxIncluded": true, + "total": 1103.81 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 975, + "tax": 128.81, + "taxIncluded": true, + "total": 1103.81 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28000028", + "packageCode": "5SI" + } + }, + { + "sailingId": "DM1522", + "packageId": "28000027", + "packageCode": "5SI", + "productId": "5_bahamian_miami_dd_halloween", + "itineraryId": "GOC,NAS", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2023-09-25", + "sailDateTo": "2023-09-30", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3770, + "tax": 481.96, + "taxIncluded": true, + "total": 4251.96 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1165, + "tax": 120.49, + "taxIncluded": true, + "total": 1285.49 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1165, + "tax": 120.49, + "taxIncluded": true, + "total": 1285.49 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 120.49, + "taxIncluded": true, + "total": 840.49 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 120.49, + "taxIncluded": true, + "total": 840.49 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DM-09C", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4160, + "tax": 481.96, + "taxIncluded": true, + "total": 4641.96 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1340, + "tax": 120.49, + "taxIncluded": true, + "total": 1460.49 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1340, + "tax": 120.49, + "taxIncluded": true, + "total": 1460.49 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 740, + "tax": 120.49, + "taxIncluded": true, + "total": 860.49 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 740, + "tax": 120.49, + "taxIncluded": true, + "total": 860.49 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "05B", + "stateroomCategoryContentId": "DM-05B", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5240, + "tax": 481.96, + "taxIncluded": true, + "total": 5721.96 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1855, + "tax": 120.49, + "taxIncluded": true, + "total": 1975.49 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1855, + "tax": 120.49, + "taxIncluded": true, + "total": 1975.49 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 765, + "tax": 120.49, + "taxIncluded": true, + "total": 885.49 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 765, + "tax": 120.49, + "taxIncluded": true, + "total": 885.49 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 8000, + "tax": 481.96, + "taxIncluded": true, + "total": 8481.96 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3000, + "tax": 120.49, + "taxIncluded": true, + "total": 3120.49 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3000, + "tax": 120.49, + "taxIncluded": true, + "total": 3120.49 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1000, + "tax": 120.49, + "taxIncluded": true, + "total": 1120.49 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1000, + "tax": 120.49, + "taxIncluded": true, + "total": 1120.49 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28000027", + "packageCode": "5SI" + } + }, + { + "sailingId": "DD1311", + "packageId": "28656404", + "packageCode": "5PEF", + "productId": "5_western_caribbean_fort_lauderdale_marvel", + "itineraryId": "GEC,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-01-07", + "sailDateTo": "2024-01-12", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3850, + "tax": 502.28, + "taxIncluded": true, + "total": 4352.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1205, + "tax": 125.57, + "taxIncluded": true, + "total": 1330.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1205, + "tax": 125.57, + "taxIncluded": true, + "total": 1330.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DD-09C", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4040, + "tax": 502.28, + "taxIncluded": true, + "total": 4542.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1300, + "tax": 125.57, + "taxIncluded": true, + "total": 1425.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1300, + "tax": 125.57, + "taxIncluded": true, + "total": 1425.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4260, + "tax": 502.28, + "taxIncluded": true, + "total": 4762.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1410, + "tax": 125.57, + "taxIncluded": true, + "total": 1535.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1410, + "tax": 125.57, + "taxIncluded": true, + "total": 1535.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 8195.2, + "tax": 502.28, + "taxIncluded": true, + "total": 8697.48 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2960, + "tax": 125.57, + "taxIncluded": true, + "total": 3085.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2960, + "tax": 125.57, + "taxIncluded": true, + "total": 3085.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1137.6, + "tax": 125.57, + "taxIncluded": true, + "total": 1263.17 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1137.6, + "tax": 125.57, + "taxIncluded": true, + "total": 1263.17 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656404", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1314", + "packageId": "28656407", + "packageCode": "5PEF", + "productId": "5_western_caribbean_fort_lauderdale_marvel", + "itineraryId": "GEC,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-01-21", + "sailDateTo": "2024-01-26", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3750, + "tax": 502.28, + "taxIncluded": true, + "total": 4252.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1155, + "tax": 125.57, + "taxIncluded": true, + "total": 1280.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1155, + "tax": 125.57, + "taxIncluded": true, + "total": 1280.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DD-09D", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3920, + "tax": 502.28, + "taxIncluded": true, + "total": 4422.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1240, + "tax": 125.57, + "taxIncluded": true, + "total": 1365.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1240, + "tax": 125.57, + "taxIncluded": true, + "total": 1365.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06B", + "stateroomCategoryContentId": "DD-06B", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4250, + "tax": 502.28, + "taxIncluded": true, + "total": 4752.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1405, + "tax": 125.57, + "taxIncluded": true, + "total": 1530.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1405, + "tax": 125.57, + "taxIncluded": true, + "total": 1530.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 8056.8, + "tax": 502.28, + "taxIncluded": true, + "total": 8559.08 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2910, + "tax": 125.57, + "taxIncluded": true, + "total": 3035.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2910, + "tax": 125.57, + "taxIncluded": true, + "total": 3035.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1118.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1243.97 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1118.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1243.97 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656407", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1317", + "packageId": "28656410", + "packageCode": "5PEF", + "productId": "5_western_caribbean_fort_lauderdale_marvel", + "itineraryId": "GEC,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-02-04", + "sailDateTo": "2024-02-09", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DD-11B", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3870, + "tax": 502.28, + "taxIncluded": true, + "total": 4372.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1215, + "tax": 125.57, + "taxIncluded": true, + "total": 1340.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1215, + "tax": 125.57, + "taxIncluded": true, + "total": 1340.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DD-09D", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4030, + "tax": 502.28, + "taxIncluded": true, + "total": 4532.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1295, + "tax": 125.57, + "taxIncluded": true, + "total": 1420.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1295, + "tax": 125.57, + "taxIncluded": true, + "total": 1420.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DD-06A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4370, + "tax": 502.28, + "taxIncluded": true, + "total": 4872.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1465, + "tax": 125.57, + "taxIncluded": true, + "total": 1590.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1465, + "tax": 125.57, + "taxIncluded": true, + "total": 1590.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 8165.6, + "tax": 502.28, + "taxIncluded": true, + "total": 8667.88 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2950, + "tax": 125.57, + "taxIncluded": true, + "total": 3075.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2950, + "tax": 125.57, + "taxIncluded": true, + "total": 3075.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1132.8, + "tax": 125.57, + "taxIncluded": true, + "total": 1258.37 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1132.8, + "tax": 125.57, + "taxIncluded": true, + "total": 1258.37 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656410", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1320", + "packageId": "28656413", + "packageCode": "5PEF", + "productId": "5_western_caribbean_fort_lauderdale_marvel", + "itineraryId": "GEC,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-02-18", + "sailDateTo": "2024-02-23", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5204, + "tax": 502.28, + "taxIncluded": true, + "total": 5706.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1570, + "tax": 125.57, + "taxIncluded": true, + "total": 1695.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1570, + "tax": 125.57, + "taxIncluded": true, + "total": 1695.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1032, + "tax": 125.57, + "taxIncluded": true, + "total": 1157.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1032, + "tax": 125.57, + "taxIncluded": true, + "total": 1157.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DD-09D", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5384, + "tax": 502.28, + "taxIncluded": true, + "total": 5886.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1660, + "tax": 125.57, + "taxIncluded": true, + "total": 1785.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1660, + "tax": 125.57, + "taxIncluded": true, + "total": 1785.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1032, + "tax": 125.57, + "taxIncluded": true, + "total": 1157.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1032, + "tax": 125.57, + "taxIncluded": true, + "total": 1157.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5694, + "tax": 502.28, + "taxIncluded": true, + "total": 6196.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1815, + "tax": 125.57, + "taxIncluded": true, + "total": 1940.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1815, + "tax": 125.57, + "taxIncluded": true, + "total": 1940.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1032, + "tax": 125.57, + "taxIncluded": true, + "total": 1157.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1032, + "tax": 125.57, + "taxIncluded": true, + "total": 1157.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-ROYAL", + "stateroomCategory": "01A", + "stateroomCategoryContentId": "DD-01A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-ROYAL", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 26496.4, + "tax": 502.28, + "taxIncluded": true, + "total": 26998.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 10685, + "tax": 125.57, + "taxIncluded": true, + "total": 10810.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 10685, + "tax": 125.57, + "taxIncluded": true, + "total": 10810.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 2563.2, + "tax": 125.57, + "taxIncluded": true, + "total": 2688.77 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 2563.2, + "tax": 125.57, + "taxIncluded": true, + "total": 2688.77 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656413", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1323", + "packageId": "28656439", + "packageCode": "5PEF", + "productId": "5_western_caribbean_fort_lauderdale_marvel", + "itineraryId": "GEC,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-03-03", + "sailDateTo": "2024-03-08", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DD-11B", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4314, + "tax": 502.28, + "taxIncluded": true, + "total": 4816.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1365, + "tax": 125.57, + "taxIncluded": true, + "total": 1490.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1365, + "tax": 125.57, + "taxIncluded": true, + "total": 1490.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 792, + "tax": 125.57, + "taxIncluded": true, + "total": 917.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 792, + "tax": 125.57, + "taxIncluded": true, + "total": 917.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DD-09C", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4494, + "tax": 502.28, + "taxIncluded": true, + "total": 4996.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1455, + "tax": 125.57, + "taxIncluded": true, + "total": 1580.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1455, + "tax": 125.57, + "taxIncluded": true, + "total": 1580.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 792, + "tax": 125.57, + "taxIncluded": true, + "total": 917.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 792, + "tax": 125.57, + "taxIncluded": true, + "total": 917.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4794, + "tax": 502.28, + "taxIncluded": true, + "total": 5296.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1605, + "tax": 125.57, + "taxIncluded": true, + "total": 1730.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1605, + "tax": 125.57, + "taxIncluded": true, + "total": 1730.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 792, + "tax": 125.57, + "taxIncluded": true, + "total": 917.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 792, + "tax": 125.57, + "taxIncluded": true, + "total": 917.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 8986, + "tax": 502.28, + "taxIncluded": true, + "total": 9488.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3245, + "tax": 125.57, + "taxIncluded": true, + "total": 3370.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3245, + "tax": 125.57, + "taxIncluded": true, + "total": 3370.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1248, + "tax": 125.57, + "taxIncluded": true, + "total": 1373.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1248, + "tax": 125.57, + "taxIncluded": true, + "total": 1373.57 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656439", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1312", + "packageId": "28656405", + "packageCode": "5PEF", + "productId": "5_western_caribbean_fort_lauderdale_marvel", + "itineraryId": "CZM,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-01-12", + "sailDateTo": "2024-01-17", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3750, + "tax": 592.12, + "taxIncluded": true, + "total": 4342.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1155, + "tax": 148.03, + "taxIncluded": true, + "total": 1303.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1155, + "tax": 148.03, + "taxIncluded": true, + "total": 1303.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DD-09D", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3920, + "tax": 592.12, + "taxIncluded": true, + "total": 4512.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1240, + "tax": 148.03, + "taxIncluded": true, + "total": 1388.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1240, + "tax": 148.03, + "taxIncluded": true, + "total": 1388.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06B", + "stateroomCategoryContentId": "DD-06B", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4250, + "tax": 592.12, + "taxIncluded": true, + "total": 4842.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1405, + "tax": 148.03, + "taxIncluded": true, + "total": 1553.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1405, + "tax": 148.03, + "taxIncluded": true, + "total": 1553.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7997.6, + "tax": 592.12, + "taxIncluded": true, + "total": 8589.72 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2890, + "tax": 148.03, + "taxIncluded": true, + "total": 3038.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2890, + "tax": 148.03, + "taxIncluded": true, + "total": 3038.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1108.8, + "tax": 148.03, + "taxIncluded": true, + "total": 1256.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1108.8, + "tax": 148.03, + "taxIncluded": true, + "total": 1256.83 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656405", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1315", + "packageId": "28656408", + "packageCode": "5PEF", + "productId": "5_western_caribbean_fort_lauderdale_marvel", + "itineraryId": "CZM,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-01-26", + "sailDateTo": "2024-01-31", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3750, + "tax": 592.12, + "taxIncluded": true, + "total": 4342.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1155, + "tax": 148.03, + "taxIncluded": true, + "total": 1303.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1155, + "tax": 148.03, + "taxIncluded": true, + "total": 1303.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DD-09D", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3920, + "tax": 592.12, + "taxIncluded": true, + "total": 4512.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1240, + "tax": 148.03, + "taxIncluded": true, + "total": 1388.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1240, + "tax": 148.03, + "taxIncluded": true, + "total": 1388.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4210, + "tax": 592.12, + "taxIncluded": true, + "total": 4802.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1385, + "tax": 148.03, + "taxIncluded": true, + "total": 1533.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1385, + "tax": 148.03, + "taxIncluded": true, + "total": 1533.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7829.6, + "tax": 592.12, + "taxIncluded": true, + "total": 8421.72 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2830, + "tax": 148.03, + "taxIncluded": true, + "total": 2978.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2830, + "tax": 148.03, + "taxIncluded": true, + "total": 2978.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1084.8, + "tax": 148.03, + "taxIncluded": true, + "total": 1232.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1084.8, + "tax": 148.03, + "taxIncluded": true, + "total": 1232.83 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656408", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1318", + "packageId": "28656411", + "packageCode": "5PEF", + "productId": "5_western_caribbean_fort_lauderdale_marvel", + "itineraryId": "CZM,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-02-09", + "sailDateTo": "2024-02-14", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DD-11B", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3770, + "tax": 592.12, + "taxIncluded": true, + "total": 4362.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1165, + "tax": 148.03, + "taxIncluded": true, + "total": 1313.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1165, + "tax": 148.03, + "taxIncluded": true, + "total": 1313.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DD-09D", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3920, + "tax": 592.12, + "taxIncluded": true, + "total": 4512.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1240, + "tax": 148.03, + "taxIncluded": true, + "total": 1388.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1240, + "tax": 148.03, + "taxIncluded": true, + "total": 1388.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4210, + "tax": 592.12, + "taxIncluded": true, + "total": 4802.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1385, + "tax": 148.03, + "taxIncluded": true, + "total": 1533.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1385, + "tax": 148.03, + "taxIncluded": true, + "total": 1533.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 148.03, + "taxIncluded": true, + "total": 868.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 8165.6, + "tax": 592.12, + "taxIncluded": true, + "total": 8757.72 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2950, + "tax": 148.03, + "taxIncluded": true, + "total": 3098.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2950, + "tax": 148.03, + "taxIncluded": true, + "total": 3098.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1132.8, + "tax": 148.03, + "taxIncluded": true, + "total": 1280.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1132.8, + "tax": 148.03, + "taxIncluded": true, + "total": 1280.83 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656411", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1321", + "packageId": "28656414", + "packageCode": "5PEF", + "productId": "5_western_caribbean_fort_lauderdale_marvel", + "itineraryId": "CZM,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-02-23", + "sailDateTo": "2024-02-28", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4055.6, + "tax": 592.12, + "taxIncluded": true, + "total": 4647.72 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1255, + "tax": 148.03, + "taxIncluded": true, + "total": 1403.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1255, + "tax": 148.03, + "taxIncluded": true, + "total": 1403.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 772.8, + "tax": 148.03, + "taxIncluded": true, + "total": 920.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 772.8, + "tax": 148.03, + "taxIncluded": true, + "total": 920.83 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DD-09D", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4225.6, + "tax": 592.12, + "taxIncluded": true, + "total": 4817.72 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1340, + "tax": 148.03, + "taxIncluded": true, + "total": 1488.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1340, + "tax": 148.03, + "taxIncluded": true, + "total": 1488.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 772.8, + "tax": 148.03, + "taxIncluded": true, + "total": 920.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 772.8, + "tax": 148.03, + "taxIncluded": true, + "total": 920.83 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4505.6, + "tax": 592.12, + "taxIncluded": true, + "total": 5097.72 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1480, + "tax": 148.03, + "taxIncluded": true, + "total": 1628.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1480, + "tax": 148.03, + "taxIncluded": true, + "total": 1628.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 772.8, + "tax": 148.03, + "taxIncluded": true, + "total": 920.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 772.8, + "tax": 148.03, + "taxIncluded": true, + "total": 920.83 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 8719.2, + "tax": 592.12, + "taxIncluded": true, + "total": 9311.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3150, + "tax": 148.03, + "taxIncluded": true, + "total": 3298.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3150, + "tax": 148.03, + "taxIncluded": true, + "total": 3298.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1209.6, + "tax": 148.03, + "taxIncluded": true, + "total": 1357.63 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1209.6, + "tax": 148.03, + "taxIncluded": true, + "total": 1357.63 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656414", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1324", + "packageId": "28656440", + "packageCode": "5PEF", + "productId": "5_western_caribbean_fort_lauderdale_marvel", + "itineraryId": "CZM,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-03-08", + "sailDateTo": "2024-03-13", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4652.8, + "tax": 592.12, + "taxIncluded": true, + "total": 5244.92 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1400, + "tax": 148.03, + "taxIncluded": true, + "total": 1548.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1400, + "tax": 148.03, + "taxIncluded": true, + "total": 1548.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 926.4, + "tax": 148.03, + "taxIncluded": true, + "total": 1074.43 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 926.4, + "tax": 148.03, + "taxIncluded": true, + "total": 1074.43 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DD-09C", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4842.8, + "tax": 592.12, + "taxIncluded": true, + "total": 5434.92 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1495, + "tax": 148.03, + "taxIncluded": true, + "total": 1643.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1495, + "tax": 148.03, + "taxIncluded": true, + "total": 1643.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 926.4, + "tax": 148.03, + "taxIncluded": true, + "total": 1074.43 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 926.4, + "tax": 148.03, + "taxIncluded": true, + "total": 1074.43 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5122.8, + "tax": 592.12, + "taxIncluded": true, + "total": 5714.92 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1635, + "tax": 148.03, + "taxIncluded": true, + "total": 1783.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1635, + "tax": 148.03, + "taxIncluded": true, + "total": 1783.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 926.4, + "tax": 148.03, + "taxIncluded": true, + "total": 1074.43 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 926.4, + "tax": 148.03, + "taxIncluded": true, + "total": 1074.43 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 9520, + "tax": 592.12, + "taxIncluded": true, + "total": 10112.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3440, + "tax": 148.03, + "taxIncluded": true, + "total": 3588.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3440, + "tax": 148.03, + "taxIncluded": true, + "total": 3588.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1320, + "tax": 148.03, + "taxIncluded": true, + "total": 1468.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1320, + "tax": 148.03, + "taxIncluded": true, + "total": 1468.03 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656440", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1310", + "packageId": "28656403", + "packageCode": "5PEF", + "productId": "5_western_fort_lauderdale", + "itineraryId": "GEC,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-01-02", + "sailDateTo": "2024-01-07", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DD-11B", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5438.8, + "tax": 502.28, + "taxIncluded": true, + "total": 5941.08 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1745, + "tax": 125.57, + "taxIncluded": true, + "total": 1870.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1745, + "tax": 125.57, + "taxIncluded": true, + "total": 1870.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 974.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1099.97 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 974.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1099.97 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DD-09C", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5708.8, + "tax": 502.28, + "taxIncluded": true, + "total": 6211.08 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1880, + "tax": 125.57, + "taxIncluded": true, + "total": 2005.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1880, + "tax": 125.57, + "taxIncluded": true, + "total": 2005.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 974.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1099.97 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 974.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1099.97 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "05B", + "stateroomCategoryContentId": "DD-05B", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 6368.8, + "tax": 502.28, + "taxIncluded": true, + "total": 6871.08 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2210, + "tax": 125.57, + "taxIncluded": true, + "total": 2335.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2210, + "tax": 125.57, + "taxIncluded": true, + "total": 2335.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 974.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1099.97 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 974.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1099.97 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": false, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE", + "stateroomCategory": null, + "stateroomCategoryContentId": null, + "stateroomSubTypeContentId": "DD-SUITE", + "price": { + "rateType": null, + "promoCode": null, + "summary": null, + "breakdownByGuest": null + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656403", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1329", + "packageId": "28656445", + "packageCode": "5PEF", + "productId": "5_western_fort_lauderdale", + "itineraryId": "GEC,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-03-31", + "sailDateTo": "2024-04-05", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 6922.8, + "tax": 502.28, + "taxIncluded": true, + "total": 7425.08 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2055, + "tax": 125.57, + "taxIncluded": true, + "total": 2180.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2055, + "tax": 125.57, + "taxIncluded": true, + "total": 2180.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1406.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1531.97 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1406.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1531.97 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DD-09C", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7232.8, + "tax": 502.28, + "taxIncluded": true, + "total": 7735.08 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2210, + "tax": 125.57, + "taxIncluded": true, + "total": 2335.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2210, + "tax": 125.57, + "taxIncluded": true, + "total": 2335.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1406.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1531.97 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1406.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1531.97 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 7492.8, + "tax": 502.28, + "taxIncluded": true, + "total": 7995.08 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2340, + "tax": 125.57, + "taxIncluded": true, + "total": 2465.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2340, + "tax": 125.57, + "taxIncluded": true, + "total": 2465.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1406.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1531.97 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1406.4, + "tax": 125.57, + "taxIncluded": true, + "total": 1531.97 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 13642.4, + "tax": 502.28, + "taxIncluded": true, + "total": 14144.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 4930, + "tax": 125.57, + "taxIncluded": true, + "total": 5055.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 4930, + "tax": 125.57, + "taxIncluded": true, + "total": 5055.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1891.2, + "tax": 125.57, + "taxIncluded": true, + "total": 2016.77 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1891.2, + "tax": 125.57, + "taxIncluded": true, + "total": 2016.77 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656445", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1336", + "packageId": "28656579", + "packageCode": "5PEF", + "productId": "5_western_fort_lauderdale", + "itineraryId": "GEC,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-04-26", + "sailDateTo": "2024-05-01", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3960, + "tax": 502.28, + "taxIncluded": true, + "total": 4462.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1260, + "tax": 125.57, + "taxIncluded": true, + "total": 1385.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1260, + "tax": 125.57, + "taxIncluded": true, + "total": 1385.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09B", + "stateroomCategoryContentId": "DD-09B", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4190, + "tax": 502.28, + "taxIncluded": true, + "total": 4692.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1375, + "tax": 125.57, + "taxIncluded": true, + "total": 1500.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1375, + "tax": 125.57, + "taxIncluded": true, + "total": 1500.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06B", + "stateroomCategoryContentId": "DD-06B", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4460, + "tax": 502.28, + "taxIncluded": true, + "total": 4962.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1510, + "tax": 125.57, + "taxIncluded": true, + "total": 1635.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1510, + "tax": 125.57, + "taxIncluded": true, + "total": 1635.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 720, + "tax": 125.57, + "taxIncluded": true, + "total": 845.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 8452.4, + "tax": 502.28, + "taxIncluded": true, + "total": 8954.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3055, + "tax": 125.57, + "taxIncluded": true, + "total": 3180.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3055, + "tax": 125.57, + "taxIncluded": true, + "total": 3180.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1171.2, + "tax": 125.57, + "taxIncluded": true, + "total": 1296.77 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1171.2, + "tax": 125.57, + "taxIncluded": true, + "total": 1296.77 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656579", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1290", + "packageId": "28387281", + "packageCode": "5SN", + "productId": "5_bermuda_new_york", + "itineraryId": "KWF", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2023-09-28", + "sailDateTo": "2023-10-03", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 3953.6, + "tax": 933.72, + "taxIncluded": true, + "total": 4887.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1300, + "tax": 233.43, + "taxIncluded": true, + "total": 1533.43 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1300, + "tax": 233.43, + "taxIncluded": true, + "total": 1533.43 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 233.43, + "taxIncluded": true, + "total": 910.23 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 233.43, + "taxIncluded": true, + "total": 910.23 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09B", + "stateroomCategoryContentId": "DD-09B", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4063.6, + "tax": 933.72, + "taxIncluded": true, + "total": 4997.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1355, + "tax": 233.43, + "taxIncluded": true, + "total": 1588.43 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1355, + "tax": 233.43, + "taxIncluded": true, + "total": 1588.43 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 233.43, + "taxIncluded": true, + "total": 910.23 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 233.43, + "taxIncluded": true, + "total": 910.23 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "05C", + "stateroomCategoryContentId": "DD-05C", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4373.6, + "tax": 933.72, + "taxIncluded": true, + "total": 5307.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1510, + "tax": 233.43, + "taxIncluded": true, + "total": 1743.43 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1510, + "tax": 233.43, + "taxIncluded": true, + "total": 1743.43 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 233.43, + "taxIncluded": true, + "total": 910.23 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 676.8, + "tax": 233.43, + "taxIncluded": true, + "total": 910.23 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-ONE-BEDROOM", + "stateroomCategory": "02B", + "stateroomCategoryContentId": "DD-02B", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-ONE-BEDROOM", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 11974.4, + "tax": 933.72, + "taxIncluded": true, + "total": 12908.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 4480, + "tax": 233.43, + "taxIncluded": true, + "total": 4713.43 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 4480, + "tax": 233.43, + "taxIncluded": true, + "total": 4713.43 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1507.2, + "tax": 233.43, + "taxIncluded": true, + "total": 1740.63 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1507.2, + "tax": 233.43, + "taxIncluded": true, + "total": 1740.63 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28387281", + "packageCode": "5SN" + } + }, + { + "sailingId": "DF0637", + "packageId": "27143817", + "packageCode": "6S", + "productId": "6_western_caribbean_port_canaveral_halloween", + "itineraryId": "CZM,GEC,GOC", + "ship": { + "id": "3143;entityType=ship;destination=dcl", + "name": "Disney Fantasy", + "seawareId": "DF", + "stateroomTypes": { + "DF-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DF-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/verandah/DDDF-Verandah-00-full.jpg?1598963594363", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/verandah/DDDF-Verandah-00-full.jpg?1598963594363", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598963594365", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Fantasy" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DF-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DF-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/oceanview/DDDF-Oceanview-00-full.jpg?1590003311203", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/oceanview/DDDF-Oceanview-00-full.jpg?1590003311203", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311204", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311204", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311205", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1590003311205", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Fantasy" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DF-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DF-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/inside/DDDF-Inside-00-full.jpg?1598963565554", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/inside/DDDF-Inside-00-full.jpg?1598963565554", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598963565556", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters!
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters!" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Fantasy" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DF-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DF-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/concierge/DDDF-Concierge-00-full.jpg?1598963518060", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/fantasy/type/concierge/DDDF-Concierge-00-full.jpg?1598963518060", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598963518061", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Fantasy" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2023-09-17", + "sailDateTo": "2023-09-23", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DF-INSIDE", + "stateroomSubType": "DF-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DF-11B", + "stateroomSubTypeContentId": "DF-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4380, + "tax": 514.2, + "taxIncluded": true, + "total": 4894.2 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1380, + "tax": 128.55, + "taxIncluded": true, + "total": 1508.55 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1380, + "tax": 128.55, + "taxIncluded": true, + "total": 1508.55 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 810, + "tax": 128.55, + "taxIncluded": true, + "total": 938.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 810, + "tax": 128.55, + "taxIncluded": true, + "total": 938.55 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DF-OUTSIDE", + "stateroomSubType": "DF-OUTSIDE-DELUXE", + "stateroomCategory": "09B", + "stateroomCategoryContentId": "DF-09B", + "stateroomSubTypeContentId": "DF-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4560, + "tax": 514.2, + "taxIncluded": true, + "total": 5074.2 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1470, + "tax": 128.55, + "taxIncluded": true, + "total": 1598.55 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1470, + "tax": 128.55, + "taxIncluded": true, + "total": 1598.55 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 810, + "tax": 128.55, + "taxIncluded": true, + "total": 938.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 810, + "tax": 128.55, + "taxIncluded": true, + "total": 938.55 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DF-VERANDAH", + "stateroomSubType": "DF-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06B", + "stateroomCategoryContentId": "DF-06B", + "stateroomSubTypeContentId": "DF-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4920, + "tax": 514.2, + "taxIncluded": true, + "total": 5434.2 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1650, + "tax": 128.55, + "taxIncluded": true, + "total": 1778.55 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1650, + "tax": 128.55, + "taxIncluded": true, + "total": 1778.55 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 810, + "tax": 128.55, + "taxIncluded": true, + "total": 938.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 810, + "tax": 128.55, + "taxIncluded": true, + "total": 938.55 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DF-SUITE", + "stateroomSubType": "DF-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DF-03A", + "stateroomSubTypeContentId": "DF-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 9036, + "tax": 514.2, + "taxIncluded": true, + "total": 9550.2 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3306, + "tax": 128.55, + "taxIncluded": true, + "total": 3434.55 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3306, + "tax": 128.55, + "taxIncluded": true, + "total": 3434.55 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1212, + "tax": 128.55, + "taxIncluded": true, + "total": 1340.55 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1212, + "tax": 128.55, + "taxIncluded": true, + "total": 1340.55 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 6, + "gratuitiesRate": 87, + "package": { + "packageID": "27143817", + "packageCode": "6S" + } + }, + { + "sailingId": "DM1540", + "packageId": "28672670", + "packageCode": "6SG", + "productId": "6_western_caribbean_galveston", + "itineraryId": "CTM,CZM", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-01-02", + "sailDateTo": "2024-01-08", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4920, + "tax": 544.8, + "taxIncluded": true, + "total": 5464.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1464, + "tax": 136.2, + "taxIncluded": true, + "total": 1600.2 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1464, + "tax": 136.2, + "taxIncluded": true, + "total": 1600.2 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 996, + "tax": 136.2, + "taxIncluded": true, + "total": 1132.2 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 996, + "tax": 136.2, + "taxIncluded": true, + "total": 1132.2 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5436, + "tax": 544.8, + "taxIncluded": true, + "total": 5980.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1674, + "tax": 136.2, + "taxIncluded": true, + "total": 1810.2 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1674, + "tax": 136.2, + "taxIncluded": true, + "total": 1810.2 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1044, + "tax": 136.2, + "taxIncluded": true, + "total": 1180.2 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1044, + "tax": 136.2, + "taxIncluded": true, + "total": 1180.2 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "05B", + "stateroomCategoryContentId": "DM-05B", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 6828, + "tax": 544.8, + "taxIncluded": true, + "total": 7372.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2322, + "tax": 136.2, + "taxIncluded": true, + "total": 2458.2 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2322, + "tax": 136.2, + "taxIncluded": true, + "total": 2458.2 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1092, + "tax": 136.2, + "taxIncluded": true, + "total": 1228.2 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1092, + "tax": 136.2, + "taxIncluded": true, + "total": 1228.2 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-ONE-BEDROOM", + "stateroomCategory": "02B", + "stateroomCategoryContentId": "DM-02B", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-ONE-BEDROOM", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 12372, + "tax": 544.8, + "taxIncluded": true, + "total": 12916.8 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 4620, + "tax": 136.2, + "taxIncluded": true, + "total": 4756.2 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 4620, + "tax": 136.2, + "taxIncluded": true, + "total": 4756.2 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1566, + "tax": 136.2, + "taxIncluded": true, + "total": 1702.2 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1566, + "tax": 136.2, + "taxIncluded": true, + "total": 1702.2 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 6, + "gratuitiesRate": 87, + "package": { + "packageID": "28672670", + "packageCode": "6SG" + } + }, + { + "sailingId": "DM1559", + "packageId": "28678745", + "packageCode": "6SG", + "productId": "6_western_caribbean_galveston", + "itineraryId": "CTM,CZM", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-03-25", + "sailDateTo": "2024-03-31", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4452, + "tax": 561.52, + "taxIncluded": true, + "total": 5013.52 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1410, + "tax": 140.38, + "taxIncluded": true, + "total": 1550.38 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1410, + "tax": 140.38, + "taxIncluded": true, + "total": 1550.38 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 816, + "tax": 140.38, + "taxIncluded": true, + "total": 956.38 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 816, + "tax": 140.38, + "taxIncluded": true, + "total": 956.38 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4788, + "tax": 561.52, + "taxIncluded": true, + "total": 5349.52 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1548, + "tax": 140.38, + "taxIncluded": true, + "total": 1688.38 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1548, + "tax": 140.38, + "taxIncluded": true, + "total": 1688.38 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 846, + "tax": 140.38, + "taxIncluded": true, + "total": 986.38 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 846, + "tax": 140.38, + "taxIncluded": true, + "total": 986.38 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5760, + "tax": 561.52, + "taxIncluded": true, + "total": 6321.52 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2004, + "tax": 140.38, + "taxIncluded": true, + "total": 2144.38 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2004, + "tax": 140.38, + "taxIncluded": true, + "total": 2144.38 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 876, + "tax": 140.38, + "taxIncluded": true, + "total": 1016.38 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 876, + "tax": 140.38, + "taxIncluded": true, + "total": 1016.38 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 10224, + "tax": 561.52, + "taxIncluded": true, + "total": 10785.52 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3840, + "tax": 140.38, + "taxIncluded": true, + "total": 3980.38 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3840, + "tax": 140.38, + "taxIncluded": true, + "total": 3980.38 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1272, + "tax": 140.38, + "taxIncluded": true, + "total": 1412.38 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1272, + "tax": 140.38, + "taxIncluded": true, + "total": 1412.38 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 6, + "gratuitiesRate": 87, + "package": { + "packageID": "28678745", + "packageCode": "6SG" + } + }, + { + "sailingId": "DD1327", + "packageId": "28656443", + "packageCode": "5PEF", + "productId": "5_western_fort_lauderdale", + "itineraryId": "CZM,GOC", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-03-22", + "sailDateTo": "2024-03-27", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 6340, + "tax": 592.12, + "taxIncluded": true, + "total": 6932.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1850, + "tax": 148.03, + "taxIncluded": true, + "total": 1998.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1850, + "tax": 148.03, + "taxIncluded": true, + "total": 1998.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1320, + "tax": 148.03, + "taxIncluded": true, + "total": 1468.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1320, + "tax": 148.03, + "taxIncluded": true, + "total": 1468.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DD-09D", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 6620, + "tax": 592.12, + "taxIncluded": true, + "total": 7212.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1990, + "tax": 148.03, + "taxIncluded": true, + "total": 2138.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1990, + "tax": 148.03, + "taxIncluded": true, + "total": 2138.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1320, + "tax": 148.03, + "taxIncluded": true, + "total": 1468.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1320, + "tax": 148.03, + "taxIncluded": true, + "total": 1468.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 6890, + "tax": 592.12, + "taxIncluded": true, + "total": 7482.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2125, + "tax": 148.03, + "taxIncluded": true, + "total": 2273.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 2125, + "tax": 148.03, + "taxIncluded": true, + "total": 2273.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1320, + "tax": 148.03, + "taxIncluded": true, + "total": 1468.03 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1320, + "tax": 148.03, + "taxIncluded": true, + "total": 1468.03 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 12999.6, + "tax": 592.12, + "taxIncluded": true, + "total": 13591.72 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 4695, + "tax": 148.03, + "taxIncluded": true, + "total": 4843.03 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 4695, + "tax": 148.03, + "taxIncluded": true, + "total": 4843.03 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1804.8, + "tax": 148.03, + "taxIncluded": true, + "total": 1952.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1804.8, + "tax": 148.03, + "taxIncluded": true, + "total": 1952.83 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656443", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DM1572", + "packageId": "28808724", + "packageCode": "5PEF", + "productId": "5_western_fort_lauderdale", + "itineraryId": "CZM,GOC", + "ship": { + "id": "2945;entityType=ship;destination=dcl", + "name": "Disney Magic", + "seawareId": "DM", + "stateroomTypes": { + "DM-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "type": "jpg", + "title": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/inside/DMDW-Inside-00-full.jpg?1598963686378", + "alt": "Stateroom with built in desk, TV, round etched glass mirror, bed, dividing curtain and sofa and table" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-deluxe-inside-stateroom-2.39x1.jpg?1598963686379", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters embellished with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings and genuine teak accents, and enjoy a restful night’s sleep on plush Euro-top beds fitted with fine Egyptian cotton linens." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Sail away in a generous-sized stateroom with a nautical motif and porthole mirror (no exterior view)." + }, + "media": {} + } + } + }, + "DM-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DM-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "type": "jpg", + "title": "Deluxe Oceanview Stateroom – Category 9A", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/G01-DMDW-deluxe-oceanview-stateroom-1lgporthole_cat9A-01-full.jpg?1598963616283", + "alt": "A bed in the foreground, with a couch, table, desk with TV and a large porthole in the background" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-deluxe-oceanview-2.39x1.jpg?1598963616283", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Oceanview Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DM-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DM-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "type": "jpg", + "title": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/concierge/DMDW-Concierge-00-full.jpg?1598963613645", + "alt": "A dining room area with 6 seat dining table, large floor to ceiling windows, a sofa and a desk" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/dm-family-concierge-2.39x1.jpg?1598963613645", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + }, + "DM-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DM-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "type": "jpg", + "title": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/magic/type/verandah/DMDW-Verandah-00-full.jpg?1598963616605", + "alt": "Stateroom with dividing curtain, dresser, TV, glass door, sofa with coffee table and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/magic-wonder/mw-verandah-2.39x1.jpg?1598963616607", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "Richly appointed and designed for families of up to 5, each Verandah Stateroom features a charming nautical motif with Art Deco flourishes. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Magic" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-05-27", + "sailDateTo": "2024-06-01", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-INSIDE", + "stateroomSubType": "DM-INSIDE-STANDARD", + "stateroomCategory": "11B", + "stateroomCategoryContentId": "DM-11B", + "stateroomSubTypeContentId": "DM-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4502, + "tax": 594.28, + "taxIncluded": true, + "total": 5096.28 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1315, + "tax": 148.57, + "taxIncluded": true, + "total": 1463.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1315, + "tax": 148.57, + "taxIncluded": true, + "total": 1463.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 936, + "tax": 148.57, + "taxIncluded": true, + "total": 1084.57 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 936, + "tax": 148.57, + "taxIncluded": true, + "total": 1084.57 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-OUTSIDE", + "stateroomSubType": "DM-OUTSIDE-DELUXE", + "stateroomCategory": "09D", + "stateroomCategoryContentId": "DM-09D", + "stateroomSubTypeContentId": "DM-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4909.6, + "tax": 594.28, + "taxIncluded": true, + "total": 5503.88 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1490, + "tax": 148.57, + "taxIncluded": true, + "total": 1638.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1490, + "tax": 148.57, + "taxIncluded": true, + "total": 1638.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 964.8, + "tax": 148.57, + "taxIncluded": true, + "total": 1113.37 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 964.8, + "tax": 148.57, + "taxIncluded": true, + "total": 1113.37 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-VERANDAH", + "stateroomSubType": "DM-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "06A", + "stateroomCategoryContentId": "DM-06A", + "stateroomSubTypeContentId": "DM-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5884.4, + "tax": 594.28, + "taxIncluded": true, + "total": 6478.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1915, + "tax": 148.57, + "taxIncluded": true, + "total": 2063.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1915, + "tax": 148.57, + "taxIncluded": true, + "total": 2063.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1027.2, + "tax": 148.57, + "taxIncluded": true, + "total": 1175.77 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1027.2, + "tax": 148.57, + "taxIncluded": true, + "total": 1175.77 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DM-SUITE", + "stateroomSubType": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DM-03A", + "stateroomSubTypeContentId": "DM-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 10496.4, + "tax": 594.28, + "taxIncluded": true, + "total": 11090.68 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3885, + "tax": 148.57, + "taxIncluded": true, + "total": 4033.57 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3885, + "tax": 148.57, + "taxIncluded": true, + "total": 4033.57 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1363.2, + "tax": 148.57, + "taxIncluded": true, + "total": 1511.77 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1363.2, + "tax": 148.57, + "taxIncluded": true, + "total": 1511.77 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28808724", + "packageCode": "5PEF" + } + }, + { + "sailingId": "DD1292", + "packageId": "28387283", + "packageCode": "6SN", + "productId": "6_bermuda_new_york_halloween", + "itineraryId": "KWF", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2023-10-07", + "sailDateTo": "2023-10-13", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4872.96, + "tax": 1061.16, + "taxIncluded": true, + "total": 5934.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1584, + "tax": 265.29, + "taxIncluded": true, + "total": 1849.29 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1584, + "tax": 265.29, + "taxIncluded": true, + "total": 1849.29 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 852.48, + "tax": 265.29, + "taxIncluded": true, + "total": 1117.77 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 852.48, + "tax": 265.29, + "taxIncluded": true, + "total": 1117.77 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09B", + "stateroomCategoryContentId": "DD-09B", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5004.96, + "tax": 1061.16, + "taxIncluded": true, + "total": 6066.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1650, + "tax": 265.29, + "taxIncluded": true, + "total": 1915.29 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1650, + "tax": 265.29, + "taxIncluded": true, + "total": 1915.29 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 852.48, + "tax": 265.29, + "taxIncluded": true, + "total": 1117.77 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 852.48, + "tax": 265.29, + "taxIncluded": true, + "total": 1117.77 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5292.96, + "tax": 1061.16, + "taxIncluded": true, + "total": 6354.12 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1794, + "tax": 265.29, + "taxIncluded": true, + "total": 2059.29 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1794, + "tax": 265.29, + "taxIncluded": true, + "total": 2059.29 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 852.48, + "tax": 265.29, + "taxIncluded": true, + "total": 1117.77 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 852.48, + "tax": 265.29, + "taxIncluded": true, + "total": 1117.77 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-ONE-BEDROOM", + "stateroomCategory": "02B", + "stateroomCategoryContentId": "DD-02B", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-ONE-BEDROOM", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 14737.44, + "tax": 1061.16, + "taxIncluded": true, + "total": 15798.6 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 5514, + "tax": 265.29, + "taxIncluded": true, + "total": 5779.29 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 5514, + "tax": 265.29, + "taxIncluded": true, + "total": 5779.29 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1854.72, + "tax": 265.29, + "taxIncluded": true, + "total": 2120.01 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1854.72, + "tax": 265.29, + "taxIncluded": true, + "total": 2120.01 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 6, + "gratuitiesRate": 87, + "package": { + "packageID": "28387283", + "packageCode": "6SN" + } + }, + { + "sailingId": "DD1295", + "packageId": "28387286", + "packageCode": "6SN", + "productId": "6_bermuda_new_york_halloween", + "itineraryId": "KWF", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2023-10-21", + "sailDateTo": "2023-10-27", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4543.68, + "tax": 1061.16, + "taxIncluded": true, + "total": 5604.84 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1500, + "tax": 265.29, + "taxIncluded": true, + "total": 1765.29 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1500, + "tax": 265.29, + "taxIncluded": true, + "total": 1765.29 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 771.84, + "tax": 265.29, + "taxIncluded": true, + "total": 1037.13 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 771.84, + "tax": 265.29, + "taxIncluded": true, + "total": 1037.13 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DD-09C", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4615.68, + "tax": 1061.16, + "taxIncluded": true, + "total": 5676.84 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1536, + "tax": 265.29, + "taxIncluded": true, + "total": 1801.29 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1536, + "tax": 265.29, + "taxIncluded": true, + "total": 1801.29 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 771.84, + "tax": 265.29, + "taxIncluded": true, + "total": 1037.13 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 771.84, + "tax": 265.29, + "taxIncluded": true, + "total": 1037.13 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 4951.68, + "tax": 1061.16, + "taxIncluded": true, + "total": 6012.84 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1704, + "tax": 265.29, + "taxIncluded": true, + "total": 1969.29 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1704, + "tax": 265.29, + "taxIncluded": true, + "total": 1969.29 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 771.84, + "tax": 265.29, + "taxIncluded": true, + "total": 1037.13 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 771.84, + "tax": 265.29, + "taxIncluded": true, + "total": 1037.13 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "stateroomCategory": "03A", + "stateroomCategoryContentId": "DD-03A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-FAMILY-OCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 10296, + "tax": 1061.16, + "taxIncluded": true, + "total": 11357.16 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3852, + "tax": 265.29, + "taxIncluded": true, + "total": 4117.29 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 3852, + "tax": 265.29, + "taxIncluded": true, + "total": 4117.29 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1296, + "tax": 265.29, + "taxIncluded": true, + "total": 1561.29 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1296, + "tax": 265.29, + "taxIncluded": true, + "total": 1561.29 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 6, + "gratuitiesRate": 87, + "package": { + "packageID": "28387286", + "packageCode": "6SN" + } + }, + { + "sailingId": "DD1326", + "packageId": "28656442", + "packageCode": "5PEF", + "productId": "5_bahamian_fort_lauderdale_dd", + "itineraryId": "GOC,NAS", + "ship": { + "id": "829;entityType=ship;destination=dcl", + "name": "Disney Dream", + "seawareId": "DD", + "stateroomTypes": { + "DD-INSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-INSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Inside", + "displayOrder": { + "displayOrder": 1 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "type": "jpg", + "title": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/inside/DDDF-Inside-00-full.jpg?1598962030737", + "alt": "Stateroom with built in wooden desk, TV, bed with magical porthole overhead, dividing curtain and sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-inside-stateroom-2.39x1.jpg?1598962030738", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 or 4, each Inside Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a Magical Porthole for real-time views of the sea—and virtual sightings of animated Disney characters! stateroomclasstest" + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Enjoy a spacious stateroom, with a Magical Porthole showing real-time ocean views and animated Disney characters." + }, + "media": {} + } + } + }, + "DD-VERANDAH;entityType=stateroom-type;destination=dcl": { + "id": "DD-VERANDAH;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Verandah", + "displayOrder": { + "displayOrder": 3 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "type": "jpg", + "title": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/verandah/DDDF-Verandah-00-full.jpg?1598962030634", + "alt": "Stateroom with wooden desk, TV, glass door that opens to verandah, sofa, dividing curtain and bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030635", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-deluxe-oceanview-verandah-stateroom-2.39x1.jpg?1598962030636", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Verandah Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents and a private verandah affording magnificent ocean views. Each room also features generous square footage and floor-to-ceiling windows." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "These are our most spacious non-Concierge staterooms, each with a private verandah (some with partial views)." + }, + "media": {} + } + } + }, + "DD-OUTSIDE;entityType=stateroom-type;destination=dcl": { + "id": "DD-OUTSIDE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Oceanview", + "displayOrder": { + "displayOrder": 2 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "type": "jpg", + "title": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/oceanview/DDDF-Oceanview-00-full.jpg?1598962030210", + "alt": "Stateroom with built in wood desk, TV, porthole, sofa, dividing curtain and queen size bed" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-cceanview-2.39x1.jpg?1598962030211", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view.
", + "type": "webDescription", + "sections": { + "body": "A richly appointed accommodation designed for families of 3 to 5, each Oceanview Stateroom features a classic nautical motif and deluxe Art Deco design. Relax in private quarters fitted with warm wood finishes, custom fabrics and carpeting, original artwork, crown moldings, genuine teak accents—and your very own porthole window to the ocean world outside, with a furnished seating area from which to admire the view." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Unwind in roomy quarters adorned in a charming nautical motif, with a real porthole window—or possibly 2!" + }, + "media": {} + } + } + }, + "DD-SUITE;entityType=stateroom-type;destination=dcl": { + "id": "DD-SUITE;entityType=stateroom-type;destination=dcl", + "type": "stateroom-type", + "name": "Concierge", + "displayOrder": { + "displayOrder": 4 + }, + "media": { + "finderDetailStateroomsFullWidthHero": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/900/360/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "type": "jpg", + "title": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/wdpro-assets/dcl/finder/staterooms/dream/type/concierge/DDDF-Concierge-00-full.jpg?1598962030759", + "alt": "Stateroom with dresser, flat screen TV, entrance, bed, chair, divider curtain and convertible sofa" + }, + "stateroomClassDesktop": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/280/118/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + }, + "stateroomClassMobile": { + "url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/375/157/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "type": "jpg", + "title": "", + "transcodeTemplate": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/{width}/{height}/75/dam/disney-cruise-line/select-staterooms/dream-fantasy/df-concierge-family-oceanview-stateroom-with-verandah-2.39x1.jpg?1598962030761", + "alt": "" + } + }, + "descriptions": { + "shortDescription": { + "id": "", + "text": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more.
", + "type": "webDescription", + "sections": { + "body": "For a Disney Cruise experience like no other, select an upscale Concierge-level suite situated on our uppermost passenger decks. Here, you’ll feel on top of the world as you sail to new worlds, all while being pampered with first-class amenities and exceptional service. With separate living rooms and bedrooms, a sprawling private verandah and special touches like a well-stocked library of movies, we’ve thought of everything you could need or want—and more." + }, + "media": {} + }, + "ctaCard": { + "id": "", + "text": "Null", + "type": "webDescription", + "sections": { + "buttonCardHeader": "View Prices", + "body": "Search for Cruises Aboard the Disney Dream" + }, + "media": {} + }, + "stateroomClassDescription": { + "id": "", + "text": "", + "type": "webDescription", + "sections": { + "body": "Our most luxurious accommodations feature a large private verandah and premium amenities and services." + }, + "media": {} + } + } + } + } + }, + "sailDateFrom": "2024-03-17", + "sailDateTo": "2024-03-22", + "available": true, + "isEarlyBooking": false, + "travelParties": { + "0": [ + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-INSIDE", + "stateroomSubType": "DD-INSIDE-STANDARD", + "stateroomCategory": "11C", + "stateroomCategoryContentId": "DD-11C", + "stateroomSubTypeContentId": "DD-INSIDE-STANDARD", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5752, + "tax": 467.32, + "taxIncluded": true, + "total": 6219.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1700, + "tax": 116.83, + "taxIncluded": true, + "total": 1816.83 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1700, + "tax": 116.83, + "taxIncluded": true, + "total": 1816.83 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1176, + "tax": 116.83, + "taxIncluded": true, + "total": 1292.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1176, + "tax": 116.83, + "taxIncluded": true, + "total": 1292.83 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-OUTSIDE", + "stateroomSubType": "DD-OUTSIDE-DELUXE", + "stateroomCategory": "09C", + "stateroomCategoryContentId": "DD-09C", + "stateroomSubTypeContentId": "DD-OUTSIDE-DELUXE", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 5952, + "tax": 467.32, + "taxIncluded": true, + "total": 6419.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1800, + "tax": 116.83, + "taxIncluded": true, + "total": 1916.83 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1800, + "tax": 116.83, + "taxIncluded": true, + "total": 1916.83 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1176, + "tax": 116.83, + "taxIncluded": true, + "total": 1292.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1176, + "tax": 116.83, + "taxIncluded": true, + "total": 1292.83 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-VERANDAH", + "stateroomSubType": "DD-VERANDAH-DELUXEOCEANVIEW", + "stateroomCategory": "07A", + "stateroomCategoryContentId": "DD-07A", + "stateroomSubTypeContentId": "DD-VERANDAH-DELUXEOCEANVIEW", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 6212, + "tax": 467.32, + "taxIncluded": true, + "total": 6679.32 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1930, + "tax": 116.83, + "taxIncluded": true, + "total": 2046.83 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 1930, + "tax": 116.83, + "taxIncluded": true, + "total": 2046.83 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1176, + "tax": 116.83, + "taxIncluded": true, + "total": 1292.83 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 1176, + "tax": 116.83, + "taxIncluded": true, + "total": 1292.83 + } + } + } + }, + { + "accessible": false, + "communicative": false, + "available": true, + "stateroomType": "DD-SUITE", + "stateroomSubType": "DD-SUITE-CONCIERGE-ROYAL", + "stateroomCategory": "01A", + "stateroomCategoryContentId": "DD-01A", + "stateroomSubTypeContentId": "DD-SUITE-CONCIERGE-ROYAL", + "price": { + "rateType": "rack", + "promoCode": "EBS", + "summary": { + "currency": "USD", + "subtotal": 30355.2, + "tax": 467.32, + "taxIncluded": true, + "total": 30822.52 + }, + "breakdownByGuest": { + "1": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 12240, + "tax": 116.83, + "taxIncluded": true, + "total": 12356.83 + }, + "2": { + "ageGroup": "ADULT", + "currency": "USD", + "subtotal": 12240, + "tax": 116.83, + "taxIncluded": true, + "total": 12356.83 + }, + "3": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 2937.6, + "tax": 116.83, + "taxIncluded": true, + "total": 3054.43 + }, + "4": { + "ageGroup": "CHILD", + "currency": "USD", + "subtotal": 2937.6, + "tax": 116.83, + "taxIncluded": true, + "total": 3054.43 + } + } + } + } + ] + }, + "hasAvailability": true, + "blockedFromBooking": false, + "numberOfNights": 5, + "gratuitiesRate": 72.5, + "package": { + "packageID": "28656442", + "packageCode": "5PEF" + } + } +] \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..1c2c3f3 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,100 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + + /* Projects */ + // "incremental": true, /* Enable incremental compilation */ + // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ + // "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */ + // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects */ + // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ + // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ + + /* Language and Environment */ + "target": "es2021", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + // "jsx": "preserve", /* Specify what JSX code is generated. */ + // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */ + // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ + // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */ + // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ + // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */ + // "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */ + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ + // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ + + /* Modules */ + "module": "commonjs", /* Specify what module code is generated. */ + // "rootDir": "./", /* Specify the root folder within your source files. */ + // "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + // "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */ + // "types": [], /* Specify type package names to be included without being referenced in a source file. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + // "resolveJsonModule": true, /* Enable importing .json files */ + // "noResolve": true, /* Disallow `import`s, `require`s or ``s from expanding the number of files TypeScript should add to a project. */ + + /* JavaScript Support */ + // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */ + // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ + // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */ + + /* Emit */ + // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ + // "declarationMap": true, /* Create sourcemaps for d.ts files. */ + // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ + // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ + // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */ + "outDir": "./dist", /* Specify an output folder for all emitted files. */ + // "removeComments": true, /* Disable emitting comments. */ + // "noEmit": true, /* Disable emitting files from a compilation. */ + // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ + // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types */ + // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ + // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ + // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ + // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ + // "newLine": "crlf", /* Set the newline character for emitting files. */ + // "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */ + // "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */ + // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ + // "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */ + // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ + + /* Interop Constraints */ + // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ + // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ + "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */ + // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ + "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ + + /* Type Checking */ + "strict": true, /* Enable all strict type-checking options. */ + // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */ + // "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */ + // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ + // "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */ + // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ + // "noImplicitThis": true, /* Enable error reporting when `this` is given the type `any`. */ + // "useUnknownInCatchVariables": true, /* Type catch clause variables as 'unknown' instead of 'any'. */ + // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ + // "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */ + // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */ + // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ + // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ + // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ + // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ + // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ + // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */ + // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ + // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ + + /* Completeness */ + // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ + "skipLibCheck": true /* Skip type checking all .d.ts files. */ + } +}