From c7ab816c99b64d2d6a3dc2f5f8e8d54a59d1d5f0 Mon Sep 17 00:00:00 2001 From: Matt Ciaccio Date: Sun, 3 May 2026 15:41:12 +0200 Subject: [PATCH] feat(seed): replace 12 hand-rolled berths with 117-row NocoDB snapshot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The old seed only had 12 berths with made-up area names ("North Pier", "Central Basin", etc.) and placeholder dimensions. Devs now get the real 117 berths exported from the legacy NocoDB Berths table — every editable column populated with real production values. What's in the snapshot (src/lib/db/seed-data/berths.json): - 117 berths total (61 available / 45 under_offer / 11 sold) - Areas A through E (matches NocoDB single-select) - All numeric fields filled: length / width / draft (ft + m), water depth, nominal boat size, power capacity (kW), voltage (V) - All NocoDB single-selects filled where present: side pontoon, mooring type, cleat/bollard type+capacity, access - Bow facing, status_override_mode, berth_approved carried forward as-is - Status normalized to lowercase snake_case ("Under Offer" -> "under_offer") - Mooring numbers reformatted A1 -> A-01 to keep the existing "Letter-NN" convention used elsewhere in the codebase Pre-sorted to preserve seed semantics: idx 0..4 -> 5 available (small) -- "open" / "details_sent" interests idx 5..9 -> 5 under_offer (medium) -- "eoi_signed" / "deposit" / "contract" idx 10..11 -> 2 sold (large) -- "completed" interests This means existing interest/reservation seeds that index berthRows[0..11] keep their semantic alignment without code changes. End-to-end verified by clearing Marina Azzurra and re-seeding: Port "Marina Azzurra" -- 117 berths, 8 clients, 3 companies, 12 yachts, 15 interests, 8 reservations Future devs running `pnpm db:seed` on a fresh DB will now get realistic berth data automatically. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/lib/db/seed-data.ts | 208 +- src/lib/db/seed-data/berths.json | 3746 ++++++++++++++++++++++++++++++ 2 files changed, 3822 insertions(+), 132 deletions(-) create mode 100644 src/lib/db/seed-data/berths.json diff --git a/src/lib/db/seed-data.ts b/src/lib/db/seed-data.ts index 12312dd..e3f20de 100644 --- a/src/lib/db/seed-data.ts +++ b/src/lib/db/seed-data.ts @@ -4,7 +4,13 @@ * Exports `seedPortData(portId, portSlug)` — creates a realistic, * multi-cardinality data fixture for one port: * - * - 12 berths (5 available / 5 reserved-active / 2 sold) + * - 117 berths imported from a snapshot of the legacy NocoDB Berths + * table (`src/lib/db/seed-data/berths.json`). The snapshot is reordered + * so the first 12 entries satisfy the index assumptions used further + * down for interest/reservation linkage: + * idx 0..4 — available (small) + * idx 5..9 — under_offer (medium) + * idx 10..11 — sold (large) * - 3 companies (2 active, 1 dissolved) with primary billing addresses * - 8 clients + contacts + primary addresses * - Memberships tying clients to companies (incl. multi-company + ended) @@ -39,6 +45,44 @@ import { getStandardEoiTemplateHtml, STANDARD_EOI_MERGE_FIELDS, } from '@/lib/pdf/templates/eoi-standard-inapp'; +import berthSnapshot from './seed-data/berths.json'; + +// ─── Berth snapshot ────────────────────────────────────────────────────────── +// 117 rows imported from the legacy NocoDB Berths table on 2026-05-03. +// Refresh by re-running the snapshot script (see git history of this file). +type SeedBerth = { + legacyId: number; + mooringNumber: string; + legacyMooringNumber: string; + area: string | null; + status: 'available' | 'under_offer' | 'sold'; + lengthFt: number | null; + widthFt: number | null; + draftFt: number | null; + lengthM: number | null; + widthM: number | null; + draftM: number | null; + widthIsMinimum: boolean; + nominalBoatSize: number | null; + nominalBoatSizeM: number | null; + waterDepth: number | null; + waterDepthM: number | null; + waterDepthIsMinimum: boolean; + sidePontoon: string | null; + powerCapacity: number | null; + voltage: number | null; + mooringType: string | null; + cleatType: string | null; + cleatCapacity: string | null; + bollardType: string | null; + bollardCapacity: string | null; + access: string | null; + price: number | null; + bowFacing: string | null; + berthApproved: boolean; + statusOverrideMode: string | null; +}; +const BERTH_SNAPSHOT = berthSnapshot as SeedBerth[]; // ─── Tunables ──────────────────────────────────────────────────────────────── @@ -77,144 +121,44 @@ export async function seedPortData(portId: string, portSlug: string): Promise { // ── 1. Berths ────────────────────────────────────────────────────────── - // 12 berths: [0..4] available, [5..9] will be reserved-active, [10..11] sold. - // We mark 5..9 as 'under_offer' (closest to "reserved via active reservation") - // and 10..11 as 'sold'; 0..4 remain 'available'. - const BERTH_SPECS: Array<{ - mooring: string; - area: string; - lengthM: string; - widthM: string; - draftM: string; - price: string; - status: 'available' | 'under_offer' | 'sold'; - }> = [ - { - mooring: 'A-01', - area: 'North Pier', - lengthM: '15', - widthM: '5', - draftM: '2.5', - price: '250000', - status: 'available', - }, - { - mooring: 'A-02', - area: 'North Pier', - lengthM: '18', - widthM: '5.5', - draftM: '2.8', - price: '320000', - status: 'available', - }, - { - mooring: 'A-03', - area: 'North Pier', - lengthM: '20', - widthM: '6', - draftM: '3.0', - price: '420000', - status: 'available', - }, - { - mooring: 'B-01', - area: 'Central Basin', - lengthM: '25', - widthM: '7', - draftM: '3.5', - price: '580000', - status: 'available', - }, - { - mooring: 'B-02', - area: 'Central Basin', - lengthM: '30', - widthM: '8', - draftM: '4.0', - price: '780000', - status: 'available', - }, - { - mooring: 'B-03', - area: 'Central Basin', - lengthM: '35', - widthM: '8.5', - draftM: '4.2', - price: '950000', - status: 'under_offer', - }, - { - mooring: 'C-01', - area: 'South Marina', - lengthM: '40', - widthM: '9', - draftM: '4.5', - price: '1250000', - status: 'under_offer', - }, - { - mooring: 'C-02', - area: 'South Marina', - lengthM: '45', - widthM: '10', - draftM: '4.8', - price: '1600000', - status: 'under_offer', - }, - { - mooring: 'C-03', - area: 'South Marina', - lengthM: '50', - widthM: '11', - draftM: '5.0', - price: '2100000', - status: 'under_offer', - }, - { - mooring: 'D-01', - area: 'Superyacht Dock', - lengthM: '60', - widthM: '13', - draftM: '5.5', - price: '3200000', - status: 'under_offer', - }, - { - mooring: 'D-02', - area: 'Superyacht Dock', - lengthM: '70', - widthM: '14', - draftM: '6.0', - price: '4500000', - status: 'sold', - }, - { - mooring: 'D-03', - area: 'Superyacht Dock', - lengthM: '80', - widthM: '15', - draftM: '6.5', - price: '6800000', - status: 'sold', - }, - ]; - + // 117 berths seeded from the legacy NocoDB Berths snapshot. + // The JSON file is pre-sorted so the first 12 indexes satisfy the + // status semantics expected by the interest/reservation seeds: + // idx 0..4 available, idx 5..9 under_offer, idx 10..11 sold. const berthRows = await tx .insert(berths) .values( - BERTH_SPECS.map((b) => ({ + BERTH_SNAPSHOT.map((b) => ({ portId, - mooringNumber: b.mooring, + mooringNumber: b.mooringNumber, area: b.area, status: b.status, - lengthM: b.lengthM, - widthM: b.widthM, - draftM: b.draftM, - lengthFt: (Number(b.lengthM) * 3.28084).toFixed(2), - widthFt: (Number(b.widthM) * 3.28084).toFixed(2), - draftFt: (Number(b.draftM) * 3.28084).toFixed(2), - price: b.price, + lengthFt: b.lengthFt != null ? String(b.lengthFt) : null, + widthFt: b.widthFt != null ? String(b.widthFt) : null, + draftFt: b.draftFt != null ? String(b.draftFt) : null, + lengthM: b.lengthM != null ? String(b.lengthM) : null, + widthM: b.widthM != null ? String(b.widthM) : null, + draftM: b.draftM != null ? String(b.draftM) : null, + widthIsMinimum: b.widthIsMinimum, + nominalBoatSize: b.nominalBoatSize != null ? String(b.nominalBoatSize) : null, + nominalBoatSizeM: b.nominalBoatSizeM != null ? String(b.nominalBoatSizeM) : null, + waterDepth: b.waterDepth != null ? String(b.waterDepth) : null, + waterDepthM: b.waterDepthM != null ? String(b.waterDepthM) : null, + waterDepthIsMinimum: b.waterDepthIsMinimum, + sidePontoon: b.sidePontoon, + powerCapacity: b.powerCapacity != null ? String(b.powerCapacity) : null, + voltage: b.voltage != null ? String(b.voltage) : null, + mooringType: b.mooringType, + cleatType: b.cleatType, + cleatCapacity: b.cleatCapacity, + bollardType: b.bollardType, + bollardCapacity: b.bollardCapacity, + access: b.access, + price: b.price != null ? String(b.price) : null, priceCurrency: 'USD', + bowFacing: b.bowFacing, + berthApproved: b.berthApproved, + statusOverrideMode: b.statusOverrideMode, tenureType: 'permanent' as const, })), ) diff --git a/src/lib/db/seed-data/berths.json b/src/lib/db/seed-data/berths.json new file mode 100644 index 0000000..2dc7f78 --- /dev/null +++ b/src/lib/db/seed-data/berths.json @@ -0,0 +1,3746 @@ +[ + { + "legacyId": 85, + "mooringNumber": "E-02", + "legacyMooringNumber": "E2", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 17.52, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 5.340096, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "No", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "2x Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 86, + "mooringNumber": "E-03", + "legacyMooringNumber": "E3", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 17.52, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 5.340096, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "No", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "2x Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 87, + "mooringNumber": "E-04", + "legacyMooringNumber": "E4", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 17.52, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 5.340096, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "No", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "2x Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 88, + "mooringNumber": "E-05", + "legacyMooringNumber": "E5", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 17.52, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 5.340096, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "No", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "2x Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 89, + "mooringNumber": "E-06", + "legacyMooringNumber": "E6", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 17.52, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 5.340096, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 99, + "mooringNumber": "E-16", + "legacyMooringNumber": "E16", + "area": "E", + "status": "under_offer", + "lengthFt": 42, + "widthFt": 15.88, + "draftFt": 10.92, + "lengthM": 12.8016, + "widthM": 4.840224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": null, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 100, + "mooringNumber": "E-17", + "legacyMooringNumber": "E17", + "area": "E", + "status": "under_offer", + "lengthFt": 42, + "widthFt": 15.88, + "draftFt": 10.92, + "lengthM": 12.8016, + "widthM": 4.840224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": null, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 68, + "mooringNumber": "D-19", + "legacyMooringNumber": "D19", + "area": "D", + "status": "under_offer", + "lengthFt": 51, + "widthFt": 17.96, + "draftFt": 8.58, + "lengthM": 15.5448, + "widthM": 5.474208, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 76, + "mooringNumber": "D-27", + "legacyMooringNumber": "D27", + "area": "D", + "status": "under_offer", + "lengthFt": 51, + "widthFt": 17.96, + "draftFt": 8.58, + "lengthM": 15.5448, + "widthM": 5.474208, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 11.17, + "waterDepthM": 3.404616, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 60, + "mooringNumber": "D-11", + "legacyMooringNumber": "D11", + "area": "D", + "status": "under_offer", + "lengthFt": 51.5, + "widthFt": 19.62, + "draftFt": 8.58, + "lengthM": 15.6972, + "widthM": 5.980176, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Quay PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Side Pier / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 30, + "mooringNumber": "B-20", + "legacyMooringNumber": "B20", + "area": "B", + "status": "sold", + "lengthFt": 157.5, + "widthFt": 37.73, + "draftFt": 14, + "lengthM": 48.006, + "widthM": 11.500104, + "draftM": 4.2672, + "widthIsMinimum": false, + "nominalBoatSize": 150, + "nominalBoatSizeM": 45.72, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 160, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3.5t) to Vessel", + "price": 2310185, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 28, + "mooringNumber": "B-18", + "legacyMooringNumber": "B18", + "area": "B", + "status": "sold", + "lengthFt": 157.48, + "widthFt": 36.92, + "draftFt": 14, + "lengthM": 47.999904, + "widthM": 11.253216, + "draftM": 4.2672, + "widthIsMinimum": false, + "nominalBoatSize": 150, + "nominalBoatSizeM": 45.72, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 160, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3.5t) to Vessel", + "price": 2310185, + "bowFacing": "West", + "berthApproved": true, + "statusOverrideMode": null + }, + { + "legacyId": 1, + "mooringNumber": "A-01", + "legacyMooringNumber": "A1", + "area": "A", + "status": "under_offer", + "lengthFt": 206.69, + "widthFt": 46.56, + "draftFt": 14.5, + "lengthM": 62.999112, + "widthM": 14.191488, + "draftM": 4.4196, + "widthIsMinimum": false, + "nominalBoatSize": 200, + "nominalBoatSizeM": 60.96, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "Quay PT", + "powerCapacity": 330, + "voltage": 480, + "mooringType": "Side Pier / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3t) to Vessel", + "price": 3528000, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": "auto" + }, + { + "legacyId": 2, + "mooringNumber": "A-02", + "legacyMooringNumber": "A2", + "area": "A", + "status": "available", + "lengthFt": 206.69, + "widthFt": 46.56, + "draftFt": 14.5, + "lengthM": 62.999112, + "widthM": 14.191488, + "draftM": 4.4196, + "widthIsMinimum": false, + "nominalBoatSize": 200, + "nominalBoatSizeM": 60.96, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "No", + "powerCapacity": 330, + "voltage": 480, + "mooringType": "2x Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3t) to Vessel", + "price": 3920313, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 3, + "mooringNumber": "A-03", + "legacyMooringNumber": "A3", + "area": "A", + "status": "available", + "lengthFt": 206.69, + "widthFt": 46.56, + "draftFt": 14, + "lengthM": 62.999112, + "widthM": 14.191488, + "draftM": 4.2672, + "widthIsMinimum": false, + "nominalBoatSize": 200, + "nominalBoatSizeM": 60.96, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "No", + "powerCapacity": 330, + "voltage": 480, + "mooringType": "2x Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3t) to Vessel", + "price": 3920313, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 4, + "mooringNumber": "A-04", + "legacyMooringNumber": "A4", + "area": "A", + "status": "under_offer", + "lengthFt": 206.69, + "widthFt": 46.56, + "draftFt": 14.5, + "lengthM": 62.999112, + "widthM": 14.191488, + "draftM": 4.4196, + "widthIsMinimum": false, + "nominalBoatSize": 200, + "nominalBoatSizeM": 60.96, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "No", + "powerCapacity": 330, + "voltage": 480, + "mooringType": "2x Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3t) to Vessel", + "price": 3920313, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 5, + "mooringNumber": "A-05", + "legacyMooringNumber": "A5", + "area": "A", + "status": "available", + "lengthFt": 206.69, + "widthFt": 46.56, + "draftFt": 14.5, + "lengthM": 62.999112, + "widthM": 14.191488, + "draftM": 4.4196, + "widthIsMinimum": false, + "nominalBoatSize": 200, + "nominalBoatSizeM": 60.96, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "No", + "powerCapacity": 330, + "voltage": 480, + "mooringType": "2x Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3t) to Vessel", + "price": 3920313, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 6, + "mooringNumber": "A-06", + "legacyMooringNumber": "A6", + "area": "A", + "status": "available", + "lengthFt": 206.69, + "widthFt": 46.56, + "draftFt": 14.5, + "lengthM": 62.999112, + "widthM": 14.191488, + "draftM": 4.4196, + "widthIsMinimum": false, + "nominalBoatSize": 200, + "nominalBoatSizeM": 60.96, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "No", + "powerCapacity": 330, + "voltage": 480, + "mooringType": "2x Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3t) to Vessel", + "price": 3920313, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 7, + "mooringNumber": "A-07", + "legacyMooringNumber": "A7", + "area": "A", + "status": "under_offer", + "lengthFt": 206.69, + "widthFt": 46.56, + "draftFt": 15.67, + "lengthM": 62.999112, + "widthM": 14.191488, + "draftM": 4.776216, + "widthIsMinimum": false, + "nominalBoatSize": 200, + "nominalBoatSizeM": 60.96, + "waterDepth": 17.42, + "waterDepthM": 5.309616, + "waterDepthIsMinimum": false, + "sidePontoon": "No", + "powerCapacity": 330, + "voltage": 480, + "mooringType": "2x Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3t) to Vessel", + "price": 3920313, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 8, + "mooringNumber": "A-08", + "legacyMooringNumber": "A8", + "area": "A", + "status": "under_offer", + "lengthFt": 206.69, + "widthFt": 46.56, + "draftFt": 15.67, + "lengthM": 62.999112, + "widthM": 14.191488, + "draftM": 4.776216, + "widthIsMinimum": false, + "nominalBoatSize": 200, + "nominalBoatSizeM": 60.96, + "waterDepth": 17.42, + "waterDepthM": 5.309616, + "waterDepthIsMinimum": false, + "sidePontoon": "No", + "powerCapacity": 330, + "voltage": 480, + "mooringType": "2x Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3t) to Vessel", + "price": 3920313, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 9, + "mooringNumber": "A-09", + "legacyMooringNumber": "A9", + "area": "A", + "status": "under_offer", + "lengthFt": 206.69, + "widthFt": 46.56, + "draftFt": 15.67, + "lengthM": 62.999112, + "widthM": 14.191488, + "draftM": 4.776216, + "widthIsMinimum": false, + "nominalBoatSize": 200, + "nominalBoatSizeM": 60.96, + "waterDepth": 17.42, + "waterDepthM": 5.309616, + "waterDepthIsMinimum": false, + "sidePontoon": "No", + "powerCapacity": 330, + "voltage": 480, + "mooringType": "2x Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3t) to Vessel", + "price": 3528000, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 10, + "mooringNumber": "A-10", + "legacyMooringNumber": "A10", + "area": "A", + "status": "available", + "lengthFt": 206.69, + "widthFt": 46.56, + "draftFt": 15.67, + "lengthM": 62.999112, + "widthM": 14.191488, + "draftM": 4.776216, + "widthIsMinimum": false, + "nominalBoatSize": 200, + "nominalBoatSizeM": 60.96, + "waterDepth": 17.42, + "waterDepthM": 5.309616, + "waterDepthIsMinimum": false, + "sidePontoon": "No", + "powerCapacity": 330, + "voltage": 480, + "mooringType": "2x Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3t) to Vessel", + "price": 3920313, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 117, + "mooringNumber": "A-11", + "legacyMooringNumber": "A11", + "area": "A", + "status": "under_offer", + "lengthFt": 265, + "widthFt": 52.92, + "draftFt": 15.67, + "lengthM": 80.772, + "widthM": 16.130016, + "draftM": 4.776216, + "widthIsMinimum": false, + "nominalBoatSize": 240, + "nominalBoatSizeM": 73.152, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Quay SB", + "powerCapacity": 330, + "voltage": 480, + "mooringType": "Side Pier / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3t) to Vessel", + "price": 5488439, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 11, + "mooringNumber": "B-01", + "legacyMooringNumber": "B1", + "area": "B", + "status": "sold", + "lengthFt": 104.33, + "widthFt": 29.52, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.997696, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Quay PT, Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Side Pier / Finger", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 12, + "mooringNumber": "B-02", + "legacyMooringNumber": "B2", + "area": "B", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 13, + "mooringNumber": "B-03", + "legacyMooringNumber": "B3", + "area": "B", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 14, + "mooringNumber": "B-04", + "legacyMooringNumber": "B4", + "area": "B", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 15, + "mooringNumber": "B-05", + "legacyMooringNumber": "B5", + "area": "B", + "status": "available", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 16, + "mooringNumber": "B-06", + "legacyMooringNumber": "B6", + "area": "B", + "status": "available", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 17, + "mooringNumber": "B-07", + "legacyMooringNumber": "B7", + "area": "B", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 18, + "mooringNumber": "B-08", + "legacyMooringNumber": "B8", + "area": "B", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 26.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.129016, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 19, + "mooringNumber": "B-09", + "legacyMooringNumber": "B9", + "area": "B", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 20, + "mooringNumber": "B-10", + "legacyMooringNumber": "B10", + "area": "B", + "status": "under_offer", + "lengthFt": 157.48, + "widthFt": 37.73, + "draftFt": 14.5, + "lengthM": 47.999904, + "widthM": 11.500104, + "draftM": 4.4196, + "widthIsMinimum": false, + "nominalBoatSize": 150, + "nominalBoatSizeM": 45.72, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "Quay SB, Yes PT", + "powerCapacity": 160, + "voltage": 480, + "mooringType": "Side Pier / Finger", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3.5t) to Vessel", + "price": 2310185, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 21, + "mooringNumber": "B-11", + "legacyMooringNumber": "B11", + "area": "B", + "status": "sold", + "lengthFt": 124.67, + "widthFt": 3081, + "draftFt": 13, + "lengthM": 37.999416, + "widthM": 939.0888, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 120, + "nominalBoatSizeM": 36.576, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car (3.5t) to Vessel", + "price": 1680315, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 22, + "mooringNumber": "B-12", + "legacyMooringNumber": "B12", + "area": "B", + "status": "available", + "lengthFt": 157.48, + "widthFt": 36.92, + "draftFt": 14.5, + "lengthM": 47.999904, + "widthM": 11.253216, + "draftM": 4.4196, + "widthIsMinimum": false, + "nominalBoatSize": 150, + "nominalBoatSizeM": 45.72, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 160, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3.5t) to Vessel", + "price": 2310185, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 23, + "mooringNumber": "B-13", + "legacyMooringNumber": "B13", + "area": "B", + "status": "available", + "lengthFt": 124.67, + "widthFt": 30.81, + "draftFt": 13, + "lengthM": 37.999416, + "widthM": 9.390888, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 120, + "nominalBoatSizeM": 36.576, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car (3.5t) to Vessel", + "price": 1680135, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 24, + "mooringNumber": "B-14", + "legacyMooringNumber": "B14", + "area": "B", + "status": "under_offer", + "lengthFt": 157.48, + "widthFt": 36.92, + "draftFt": 14, + "lengthM": 47.999904, + "widthM": 11.253216, + "draftM": 4.2672, + "widthIsMinimum": false, + "nominalBoatSize": 150, + "nominalBoatSizeM": 45.72, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 160, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3.5t) to Vessel", + "price": 2310185, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 25, + "mooringNumber": "B-15", + "legacyMooringNumber": "B15", + "area": "B", + "status": "under_offer", + "lengthFt": 124.67, + "widthFt": 30.81, + "draftFt": 13, + "lengthM": 37.999416, + "widthM": 9.390888, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 120, + "nominalBoatSizeM": 36.576, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car (3.5t) to Vessel", + "price": 1680135, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 26, + "mooringNumber": "B-16", + "legacyMooringNumber": "B16", + "area": "B", + "status": "under_offer", + "lengthFt": 157.48, + "widthFt": 36.92, + "draftFt": 14.5, + "lengthM": 47.999904, + "widthM": 11.253216, + "draftM": 4.4196, + "widthIsMinimum": false, + "nominalBoatSize": 150, + "nominalBoatSizeM": 45.72, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 160, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type B", + "bollardCapacity": "40 ton break load", + "access": "Car (3.5t) to Vessel", + "price": 2310185, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 27, + "mooringNumber": "B-17", + "legacyMooringNumber": "B17", + "area": "B", + "status": "sold", + "lengthFt": 30, + "widthFt": 15.4, + "draftFt": 13, + "lengthM": 9.144, + "widthM": 4.69392, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 30, + "nominalBoatSizeM": 9.144, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB, PT", + "powerCapacity": 7, + "voltage": 120, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car (3.5t) to Vessel", + "price": 168013, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 29, + "mooringNumber": "B-19", + "legacyMooringNumber": "B19", + "area": "B", + "status": "sold", + "lengthFt": 30, + "widthFt": 15.4, + "draftFt": 13, + "lengthM": 9.144, + "widthM": 4.69392, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 30, + "nominalBoatSizeM": 9.144, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB, PT", + "powerCapacity": 7, + "voltage": 120, + "mooringType": "2x Finger", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car (3.5t) to Vessel", + "price": 168013, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 31, + "mooringNumber": "B-21", + "legacyMooringNumber": "B21", + "area": "B", + "status": "sold", + "lengthFt": 30, + "widthFt": 15.4, + "draftFt": 13, + "lengthM": 9.144, + "widthM": 4.69392, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 30, + "nominalBoatSizeM": 9.144, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB, PT", + "powerCapacity": 7, + "voltage": 120, + "mooringType": "2x Finger", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car (3.5t) to Vessel", + "price": 168013, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 33, + "mooringNumber": "B-23", + "legacyMooringNumber": "B23", + "area": "B", + "status": "sold", + "lengthFt": 30, + "widthFt": 15.4, + "draftFt": 13, + "lengthM": 9.144, + "widthM": 4.69392, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 30, + "nominalBoatSizeM": 9.144, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 7, + "voltage": 120, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car (3.5t) to Vessel", + "price": 168013, + "bowFacing": "East", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 35, + "mooringNumber": "C-01", + "legacyMooringNumber": "C1", + "area": "C", + "status": "available", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Quay SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Side Pier / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 36, + "mooringNumber": "C-02", + "legacyMooringNumber": "C2", + "area": "C", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 37, + "mooringNumber": "C-03", + "legacyMooringNumber": "C3", + "area": "C", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 38, + "mooringNumber": "C-04", + "legacyMooringNumber": "C4", + "area": "C", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 39, + "mooringNumber": "C-05", + "legacyMooringNumber": "C5", + "area": "C", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 40, + "mooringNumber": "C-06", + "legacyMooringNumber": "C6", + "area": "C", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 41, + "mooringNumber": "C-07", + "legacyMooringNumber": "C7", + "area": "C", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 42, + "mooringNumber": "C-08", + "legacyMooringNumber": "C8", + "area": "C", + "status": "available", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 43, + "mooringNumber": "C-09", + "legacyMooringNumber": "C9", + "area": "C", + "status": "available", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 44, + "mooringNumber": "C-10", + "legacyMooringNumber": "C10", + "area": "C", + "status": "available", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 12.8, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.90144, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 45, + "mooringNumber": "C-11", + "legacyMooringNumber": "C11", + "area": "C", + "status": "available", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 13, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 46, + "mooringNumber": "C-12", + "legacyMooringNumber": "C12", + "area": "C", + "status": "available", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 13, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 47, + "mooringNumber": "C-13", + "legacyMooringNumber": "C13", + "area": "C", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 13, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 100, + "nominalBoatSizeM": 30.48, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1260100, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 48, + "mooringNumber": "C-14", + "legacyMooringNumber": "C14", + "area": "C", + "status": "under_offer", + "lengthFt": 104.33, + "widthFt": 27.67, + "draftFt": 13, + "lengthM": 31.799784, + "widthM": 8.433816, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 120, + "nominalBoatSizeM": 36.576, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1680135, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 49, + "mooringNumber": "C-15", + "legacyMooringNumber": "C15", + "area": "C", + "status": "under_offer", + "lengthFt": 124.67, + "widthFt": 30.81, + "draftFt": 13, + "lengthM": 37.999416, + "widthM": 9.390888, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 120, + "nominalBoatSizeM": 36.576, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1680135, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 118, + "mooringNumber": "C-16", + "legacyMooringNumber": "C16", + "area": "C", + "status": "available", + "lengthFt": 124.67, + "widthFt": 30.81, + "draftFt": 13, + "lengthM": 37.999416, + "widthM": 9.390888, + "draftM": 3.9624, + "widthIsMinimum": false, + "nominalBoatSize": 120, + "nominalBoatSizeM": 36.576, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 83, + "voltage": 480, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": "Bull bollard type A", + "bollardCapacity": "20 ton break load", + "access": "Car to Quai, Cart to Vessel", + "price": 1680135, + "bowFacing": "West", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 119, + "mooringNumber": "C-17", + "legacyMooringNumber": "C17", + "area": "C", + "status": "under_offer", + "lengthFt": 67.25, + "widthFt": 22.54, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.870192, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Quay PT, Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Side Pier / Finger", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 120, + "mooringNumber": "C-18", + "legacyMooringNumber": "C18", + "area": "C", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 121, + "mooringNumber": "C-19", + "legacyMooringNumber": "C19", + "area": "C", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 122, + "mooringNumber": "C-20", + "legacyMooringNumber": "C20", + "area": "C", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 123, + "mooringNumber": "C-21", + "legacyMooringNumber": "C21", + "area": "C", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 124, + "mooringNumber": "C-22", + "legacyMooringNumber": "C22", + "area": "C", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 125, + "mooringNumber": "C-23", + "legacyMooringNumber": "C23", + "area": "C", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 126, + "mooringNumber": "C-24", + "legacyMooringNumber": "C24", + "area": "C", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 127, + "mooringNumber": "C-25", + "legacyMooringNumber": "C25", + "area": "C", + "status": "under_offer", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 128, + "mooringNumber": "C-26", + "legacyMooringNumber": "C26", + "area": "C", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 129, + "mooringNumber": "C-27", + "legacyMooringNumber": "C27", + "area": "C", + "status": "under_offer", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": false, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 130, + "mooringNumber": "C-28", + "legacyMooringNumber": "C28", + "area": "C", + "status": "under_offer", + "lengthFt": 67.25, + "widthFt": 22.54, + "draftFt": 13, + "lengthM": 20.4978, + "widthM": 6.870192, + "draftM": 3.9624, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 50, + "mooringNumber": "D-01", + "legacyMooringNumber": "D1", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 22.54, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.870192, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Quay SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Side Pier / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 51, + "mooringNumber": "D-02", + "legacyMooringNumber": "D2", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 22.54, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.870192, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 52, + "mooringNumber": "D-03", + "legacyMooringNumber": "D3", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 53, + "mooringNumber": "D-04", + "legacyMooringNumber": "D4", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.9, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.32232, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 54, + "mooringNumber": "D-05", + "legacyMooringNumber": "D5", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.9, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.32232, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 55, + "mooringNumber": "D-06", + "legacyMooringNumber": "D6", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": false, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 56, + "mooringNumber": "D-07", + "legacyMooringNumber": "D7", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.9, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.32232, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 57, + "mooringNumber": "D-08", + "legacyMooringNumber": "D8", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 58, + "mooringNumber": "D-09", + "legacyMooringNumber": "D9", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.9, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.32232, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 59, + "mooringNumber": "D-10", + "legacyMooringNumber": "D10", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 61, + "mooringNumber": "D-12", + "legacyMooringNumber": "D12", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 62, + "mooringNumber": "D-13", + "legacyMooringNumber": "D13", + "area": "D", + "status": "available", + "lengthFt": 51.5, + "widthFt": 19.62, + "draftFt": 8.58, + "lengthM": 15.6972, + "widthM": 5.980176, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "No", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "2x Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 63, + "mooringNumber": "D-14", + "legacyMooringNumber": "D14", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.9, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.32232, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 64, + "mooringNumber": "D-15", + "legacyMooringNumber": "D15", + "area": "D", + "status": "available", + "lengthFt": 51, + "widthFt": 19.62, + "draftFt": 8.56, + "lengthM": 15.5448, + "widthM": 5.980176, + "draftM": 2.609088, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "No", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "2x Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 65, + "mooringNumber": "D-16", + "legacyMooringNumber": "D16", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": false, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 66, + "mooringNumber": "D-17", + "legacyMooringNumber": "D17", + "area": "D", + "status": "available", + "lengthFt": 51.5, + "widthFt": 19.62, + "draftFt": 8.58, + "lengthM": 15.6972, + "widthM": 5.980176, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 67, + "mooringNumber": "D-18", + "legacyMooringNumber": "D18", + "area": "D", + "status": "under_offer", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 69, + "mooringNumber": "D-20", + "legacyMooringNumber": "D20", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.9, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.32232, + "widthIsMinimum": false, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 70, + "mooringNumber": "D-21", + "legacyMooringNumber": "D21", + "area": "D", + "status": "under_offer", + "lengthFt": 51.5, + "widthFt": 17.96, + "draftFt": 8.58, + "lengthM": 15.6972, + "widthM": 5.474208, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 71, + "mooringNumber": "D-22", + "legacyMooringNumber": "D22", + "area": "D", + "status": "under_offer", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 10.92, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 72, + "mooringNumber": "D-23", + "legacyMooringNumber": "D23", + "area": "D", + "status": "under_offer", + "lengthFt": 51.5, + "widthFt": 17.96, + "draftFt": 8.58, + "lengthM": 15.6972, + "widthM": 5.474208, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 73, + "mooringNumber": "D-24", + "legacyMooringNumber": "D24", + "area": "D", + "status": "under_offer", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 13, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.9624, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 14.42, + "waterDepthM": 4.395216, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 74, + "mooringNumber": "D-25", + "legacyMooringNumber": "D25", + "area": "D", + "status": "under_offer", + "lengthFt": 51.5, + "widthFt": 17.96, + "draftFt": 8.58, + "lengthM": 15.6972, + "widthM": 5.474208, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 75, + "mooringNumber": "D-26", + "legacyMooringNumber": "D26", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 13, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 3.9624, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 77, + "mooringNumber": "D-28", + "legacyMooringNumber": "D28", + "area": "D", + "status": "available", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 15.67, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 4.776216, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 17.42, + "waterDepthM": 5.309616, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 78, + "mooringNumber": "D-29", + "legacyMooringNumber": "D29", + "area": "D", + "status": "available", + "lengthFt": 51.5, + "widthFt": 17.96, + "draftFt": 8.58, + "lengthM": 15.6972, + "widthM": 5.474208, + "draftM": 2.615184, + "widthIsMinimum": false, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 11.17, + "waterDepthM": 3.404616, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 79, + "mooringNumber": "D-30", + "legacyMooringNumber": "D30", + "area": "D", + "status": "under_offer", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 15.67, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 4.776216, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 17.42, + "waterDepthM": 5.309616, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 80, + "mooringNumber": "D-31", + "legacyMooringNumber": "D31", + "area": "D", + "status": "sold", + "lengthFt": 51.5, + "widthFt": 17.96, + "draftFt": 8.58, + "lengthM": 15.6972, + "widthM": 5.474208, + "draftM": 2.615184, + "widthIsMinimum": false, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 81, + "mooringNumber": "D-32", + "legacyMooringNumber": "D32", + "area": "D", + "status": "under_offer", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 15.67, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 4.776216, + "widthIsMinimum": true, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 17.32, + "waterDepthM": 5.279136, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 82, + "mooringNumber": "D-33", + "legacyMooringNumber": "D33", + "area": "D", + "status": "available", + "lengthFt": 51.5, + "widthFt": 17.96, + "draftFt": 8.58, + "lengthM": 15.6972, + "widthM": 5.474208, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 12.17, + "waterDepthM": 3.709416, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 83, + "mooringNumber": "D-34", + "legacyMooringNumber": "D34", + "area": "D", + "status": "under_offer", + "lengthFt": 67.25, + "widthFt": 20.88, + "draftFt": 15.67, + "lengthM": 20.4978, + "widthM": 6.364224, + "draftM": 4.776216, + "widthIsMinimum": false, + "nominalBoatSize": 65, + "nominalBoatSizeM": 19.812, + "waterDepth": 17.42, + "waterDepthM": 5.309616, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A5", + "cleatCapacity": "20-24 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 132, + "mooringNumber": "D-35", + "legacyMooringNumber": "D35", + "area": "D", + "status": "available", + "lengthFt": 51.5, + "widthFt": 17.96, + "draftFt": 10.08, + "lengthM": 15.6972, + "widthM": 5.474208, + "draftM": 3.072384, + "widthIsMinimum": false, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 133, + "mooringNumber": "D-37", + "legacyMooringNumber": "D37", + "area": "D", + "status": "under_offer", + "lengthFt": 51.5, + "widthFt": 17.96, + "draftFt": 10.92, + "lengthM": 15.6972, + "widthM": 5.474208, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 134, + "mooringNumber": "D-39", + "legacyMooringNumber": "D39", + "area": "D", + "status": "under_offer", + "lengthFt": 51.5, + "widthFt": 17.7, + "draftFt": 10.92, + "lengthM": 15.6972, + "widthM": 5.39496, + "draftM": 3.328416, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 16.08, + "waterDepthM": 4.901184, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 135, + "mooringNumber": "D-41", + "legacyMooringNumber": "D41", + "area": "D", + "status": "sold", + "lengthFt": 51.5, + "widthFt": 17.96, + "draftFt": 8.58, + "lengthM": 15.6972, + "widthM": 5.474208, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 50, + "nominalBoatSizeM": 15.24, + "waterDepth": 17.42, + "waterDepthM": 5.309616, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB, PT", + "powerCapacity": 12, + "voltage": 250, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Cart to Vessel", + "price": 728058, + "bowFacing": "South", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 84, + "mooringNumber": "E-01", + "legacyMooringNumber": "E1", + "area": "E", + "status": "sold", + "lengthFt": 42, + "widthFt": 17.52, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 5.340096, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "No", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "2x Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 90, + "mooringNumber": "E-07", + "legacyMooringNumber": "E7", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 15.88, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 4.840224, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 91, + "mooringNumber": "E-08", + "legacyMooringNumber": "E8", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 15.88, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 4.840224, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 92, + "mooringNumber": "E-09", + "legacyMooringNumber": "E9", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 15.88, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 4.840224, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 93, + "mooringNumber": "E-10", + "legacyMooringNumber": "E10", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 15.88, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 4.840224, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 94, + "mooringNumber": "E-11", + "legacyMooringNumber": "E11", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 15.88, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 4.840224, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 95, + "mooringNumber": "E-12", + "legacyMooringNumber": "E12", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 15.88, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 4.840224, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes PT", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 96, + "mooringNumber": "E-13", + "legacyMooringNumber": "E13", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 15.88, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 4.840224, + "draftM": 2.615184, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 97, + "mooringNumber": "E-14", + "legacyMooringNumber": "E14", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 15.88, + "draftFt": 8.58, + "lengthM": 12.8016, + "widthM": 4.840224, + "draftM": 2.615184, + "widthIsMinimum": false, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 9.5, + "waterDepthM": 2.8956, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 98, + "mooringNumber": "E-15", + "legacyMooringNumber": "E15", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 15.88, + "draftFt": 10.08, + "lengthM": 12.8016, + "widthM": 4.840224, + "draftM": 3.072384, + "widthIsMinimum": true, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 11.17, + "waterDepthM": 3.404616, + "waterDepthIsMinimum": true, + "sidePontoon": "Yes SB", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": 280022, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + }, + { + "legacyId": 137, + "mooringNumber": "E-18", + "legacyMooringNumber": "E18", + "area": "E", + "status": "available", + "lengthFt": 42, + "widthFt": 15, + "draftFt": 12.08, + "lengthM": 12.8016, + "widthM": 4.572, + "draftM": 3.681984, + "widthIsMinimum": false, + "nominalBoatSize": 40, + "nominalBoatSizeM": 12.192, + "waterDepth": 13.42, + "waterDepthM": 4.090416, + "waterDepthIsMinimum": false, + "sidePontoon": "Yes PT", + "powerCapacity": 4, + "voltage": 125, + "mooringType": "Finger / Med Mooring", + "cleatType": "A3", + "cleatCapacity": "10-14 ton break load", + "bollardType": null, + "bollardCapacity": null, + "access": "Car to Quai, Cart to Vessel", + "price": null, + "bowFacing": "North", + "berthApproved": false, + "statusOverrideMode": null + } +]