Award Number

Award Number 9700 / N0002420C2300 Federal Contract Action Summary (Last 5 Years)

Procurement analysis page for award number N0002420C2300 under agency ID 9700, covering the last 5 years of recorded actions and obligations.

This award record for PIID N0002420C2300 shows 72 actions in the last 5 years with total obligated value of 1.85 billion dollars. The average action value is 25,732,282.47.

Generated at 03/20/2026

Analysis period: Last 5 years

Values reflect the provided analysis window and may differ from full-lifecycle totals outside that period.

Agency ID
9700
PIID
N0002420C2300
Type
Award
Total Obligated
1.85 billion
1,852,724,338.00
Actions
72
Average Action Value
25,732,282.47

Overview

The award number N0002420C2300 is associated with agency ID 9700 in the provided FPDS analysis window. Over the last 5 years, the record includes 72 actions and 1,852,724,338 dollars in total obligated value. The average action value for the period is 25,732,282.47.

How to use this page

Use this page to review obligation activity tied to award N0002420C2300 and compare action volume against total obligated value. The figures are useful for quick screening, trend review, and linking this award record to other procurement data for agency ID 9700.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002420C2300'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    agency_id,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
1700 DEPT OF THE NAVY 1,852,724,338.00 1.85 billion 72

Insight

Over the last 5 years, obligations for PIID N0002420C2300 are fully concentrated in a single top agency: the Department of the Navy (agency ID 1700). This agency accounts for $1.85 billion across 72 awards, indicating that the award activity is entirely concentrated within one agency relationship rather than distributed across multiple agencies.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002420C2300'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
MARINETTE MARINE CORPORATION 98042 1,852,724,338.00 1.85 billion 72

Insight

Over the 5-year window, obligations for award PIID N0002420C2300 are fully concentrated with MARINETTE MARINE CORPORATION (CAGE 98042), which accounts for $1.85 billion across 72 awards. This indicates a highly concentrated vendor profile with no diversification among top vendors in the provided data. The award history suggests sustained reliance on a single contractor for this requirement.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002420C2300'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
336611 SHIP BUILDING AND REPAIRING 1,852,724,338.00 1.85 billion 72

Insight

Obligations under PIID N0002420C2300 are fully concentrated in NAICS 336611, Ship Building and Repairing, with $1.85 billion across 72 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The distribution suggests the award activity is entirely aligned to shipbuilding and repair requirements.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002420C2300'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
1905 COMBAT SHIPS AND LANDING VESSELS 1,852,724,338.00 1.85 billion 72

Insight

Over the 5-year window for award N0002420C2300 under agency 9700, obligations are fully concentrated in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for $1.85 billion across 72 awards, indicating a highly focused procurement pattern within this award. No other PSCs are reflected in the provided data, so distribution is entirely concentrated in this category.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002420C2300'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 559,391,420.00 559.39 million 8
2022 631,701,516.00 631.70 million 10
2023 629,173,182.00 629.17 million 17
2024 1,107,386,226.00 1.11 billion 21
2025 -1,074,928,006.00 -1.07 billion 16

Insight

Obligations were relatively steady from 2021 through 2023, ranging from $559.39 million to $631.70 million, while award counts increased from 8 to 17, indicating a broader distribution across more actions without a comparable increase in annual dollars. In 2024, obligated amount rose sharply to $1.11 billion with 21 awards, marking the highest positive annual level in the period. In 2025, obligations declined to -$1.07 billion across 16 awards, indicating a substantial net downward adjustment after the 2024 peak.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, and annual trends.

Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.