Award Number

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

Award record for PIID N0002420C2300 under agency ID 9700, showing obligations and action activity over the last 10 years.

This award page summarizes procurement activity for PIID N0002420C2300 across the last 10 years. Total obligated amount is 2.65 billion across 76 award actions, with an average action value of 34,840,010.8.

Generated at 03/20/2026

Analysis period: Last 10 years

All figures reflect the provided analysis window and the exact total obligated amount of 2,647,840,821.

Agency ID
9700
PIID
N0002420C2300
Type
Award
Total Obligated
2.65 billion
2,647,840,821.00
Actions
76
Average Action Value
34,840,010.80

Overview

Over the last 10 years, PIID N0002420C2300 shows 76 award actions with total obligations of 2,647,840,821. The average action value is 34,840,010.8, indicating a high-dollar award record with repeated action activity. This page presents the award-level summary for agency ID 9700.

How to use this page

Use this page to review the award’s obligation total, action count, and average action value in one place. It is suited for procurement analysis, award tracking, and quick comparison against other award records in the same agency context.

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 10 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 2,647,840,821.00 2.65 billion 76

Insight

Over the 10-year window, obligations for PIID N0002420C2300 are fully concentrated within a single top agency: the Department of the Navy (agency ID 1700). The Navy accounts for $2.65 billion across 76 awards, indicating a high degree of agency-level concentration with no visible diversification across other agencies in the provided results. This pattern suggests the award’s activity is primarily anchored to one buying organization.

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 10 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 2,647,840,821.00 2.65 billion 76

Insight

Obligations for PIID N0002420C2300 over the 10-year window are fully concentrated with a single vendor, MARINETTE MARINE CORPORATION (CAGE 98042). This vendor accounts for 76 awards and $2.65 billion in total obligated value, indicating a highly concentrated award pattern with no diversification among top vendors in the provided data.

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 10 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 2,647,840,821.00 2.65 billion 76

Insight

The award’s obligations are fully concentrated in NAICS 336611, Ship Building and Repairing, totaling $2.65 billion across 76 awards over the 10-year window. This indicates a highly concentrated procurement profile with no visible distribution across other NAICS categories in the provided data. The volume of awards within a single NAICS suggests sustained activity in shipbuilding-related work rather than a diversified procurement mix.

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 10 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 2,647,840,821.00 2.65 billion 76

Insight

For PIID N0002420C2300 over the 10-year window, obligations are concentrated entirely in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for 2.65 billion across 76 awards, indicating a highly focused award pattern within a single product/service category. No other PSCs are provided in this query result, so distribution appears fully concentrated in this category based on the available data.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2020 795,116,483.00 795.12 million 4
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 are concentrated in a small set of recent years, with annual activity rising from 4 awards in 2020 to a peak of 21 awards in 2024. Obligated amounts were relatively stable in 2022-2024 at roughly $629 million to $1.11 billion, after a lower level in 2021 of $559.39 million. The 2025 figure shows a negative obligated total of $1.07 billion across 16 awards, indicating a significant downward adjustment or de-obligation within the period.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.