Award Number

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

Analyst summary for award number N0002423C2305 under agency ID 9700, covering obligations and action activity over the last 5 years.

This page summarizes federal procurement activity for award number N0002423C2305. Over the last 5 years, the award shows 55 actions and total obligated amount of 5.03 billion dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

The figures shown here use the provided analysis window and reflect total obligated exact value of 5027234084 and an average action value of 91,404,256.07.

Agency ID
9700
PIID
N0002423C2305
Type
Award
Total Obligated
5.03 billion
5,027,234,084.00
Actions
55
Average Action Value
91,404,256.07

Overview

This award record is identified by PIID N0002423C2305 and is associated with agency ID 9700. In the last 5 years, the award has 55 recorded actions and total obligated funding of 5,027,234,084 dollars, with an average action value of 91,404,256.07 dollars.

How to use this page

Use this page to review the award's obligation history and action volume within the selected analysis window. The totals and averages provide a compact view of activity without adding details beyond the supplied award data.

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 = 'N0002423C2305'
    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 5,027,234,084.00 5.03 billion 55

Insight

For PIID N0002423C2305 over the 5-year window, obligations are fully concentrated in a single top agency: the DEPT OF THE NAVY. The Navy accounts for $5.03 billion across 55 awards, indicating a highly concentrated award distribution with no visible diversification across other agencies in the provided data.

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 = 'N0002423C2305'
        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
BATH IRON WORKS CORPORATION 70876 5,027,234,084.00 5.03 billion 55

Insight

BATH IRON WORKS CORPORATION is the sole top vendor for this award over the 5-year window, accounting for all identified obligation activity in this section. Total obligated amount is 5.03 billion across 55 awards, indicating strong concentration with no diversification among other vendors reflected here. This pattern suggests the award’s obligations have been consistently tied to a single contractor relationship.

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 = 'N0002423C2305'
    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 5,027,234,084.00 5.03 billion 55

Insight

For award PIID N0002423C2305 over the 5-year window, obligations are fully concentrated in NAICS 336611, Ship Building and Repairing, with $5.03 billion across 55 awards. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume of awards alongside the large obligated amount suggests sustained, recurrent activity within the same industrial category.

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 = 'N0002423C2305'
    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 5,027,234,084.00 5.03 billion 55

Insight

Over the 5-year window, obligations under PIID N0002423C2305 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, totaling $5.03 billion across 55 awards. This indicates a narrowly focused procurement profile with no evidence of PSC diversification in the provided data. The award activity and obligation volume are consistent with a sustained emphasis on a single maritime platform 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 = 'N0002423C2305'
    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
2023 1,762,523,569.00 1.76 billion 4
2024 1,601,624,240.00 1.60 billion 17
2025 1,663,086,275.00 1.66 billion 34

Insight

Obligations under PIID N0002423C2305 remained concentrated at roughly $1.6 billion to $1.8 billion annually across the observed years, with no major swing in annual total obligated value. The distribution shifted materially toward a higher number of awards, increasing from 4 in 2023 to 17 in 2024 and 34 in 2025, indicating a broader spread of obligation activity over time. Despite this increase in award count, annual obligated amounts stayed relatively stable, suggesting smaller average obligations per award in later years.

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.