Award Number

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

Award number N0002423C2305 for agency 9700 shows 34 actions in the last full year, with total obligations of 1.66 billion.

This page summarizes award number N0002423C2305 for agency 9700 over the last full year. The record shows 34 award actions and total obligated funding of 1,663,086,275, averaging 48,914,302.21 per action.

Generated at 03/20/2026

Analysis period: Last full year

Figures reflect the provided analysis window and obligated totals for this award record.

Agency ID
9700
PIID
N0002423C2305
Type
Award
Total Obligated
1.66 billion
1,663,086,275.00
Actions
34
Average Action Value
48,914,302.21

Overview

Award number N0002423C2305 is the identified record for agency 9700 in the last full year. The available totals show 34 actions and 1,663,086,275 in obligated funding, with an average action value of 48,914,302.21. These figures describe the award activity captured for the analysis window.

How to use this page

Use this page to review the award-level procurement record, including total obligations and action volume. The summary supports quick comparison across awards by showing both the exact obligated total and the average value per action.

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 1 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,663,086,275.00 1.66 billion 34

Insight

Within the 1-year window for award PIID N0002423C2305, obligations are fully concentrated under DEPT OF THE NAVY (agency 1700). The reported total obligated is $1.66 billion across 34 awards, indicating all visible activity in this section is concentrated within a single top agency. This concentration suggests the award’s funding profile is highly focused 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 = '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 1 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 1,663,086,275.00 1.66 billion 34

Insight

BATH IRON WORKS CORPORATION is the sole top vendor associated with this award in the 1-year window, accounting for $1.66 billion across 34 awards. This indicates a highly concentrated obligation pattern with no visible distribution across additional vendors in the provided data. The volume of awards suggests recurring obligations to a single contractor rather than broad vendor dispersion.

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 1 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,663,086,275.00 1.66 billion 34

Insight

Over the past 1 year, obligations for award PIID N0002423C2305 under agency 9700 are fully concentrated in NAICS 336611, Ship Building and Repairing. This category accounts for 1.66 billion obligated across 34 awards, indicating a narrow industrial distribution and heavy reliance on a single shipbuilding/repairing activity. The absence of other NAICS codes in the window suggests no observable diversification in obligated spending for this award.

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 1 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,663,086,275.00 1.66 billion 34

Insight

Obligations for PIID N0002423C2305 over the past year are fully concentrated in PSC 1905, Combat Ships and Landing Vessels. This category accounts for $1.66 billion across 34 awards, indicating a highly focused obligation profile with no other PSCs represented in the provided data. The distribution suggests this award is centered on naval vessel-related procurement activity.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 1,663,086,275.00 1.66 billion 34

Insight

Over the 1-year window, obligations are concentrated entirely in 2025, with $1.66 billion obligated across 34 awards for PIID N0002423C2305 under agency 9700. The activity reflects a concentrated award profile rather than a multi-year distribution, with substantial funding attached to a relatively limited number of awards. This pattern suggests a significant recent funding surge within the query scope.

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