Award Number

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

Federal award record for PIID N0002418C2305 under agency ID 9700, covering obligation activity over the last 10 years.

This page summarizes award-level procurement activity for award number N0002418C2305 in agency 9700. Over the last 10 years, the award shows 283 actions and total obligated funding of $5,337,742,461.86.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the last 10 years of readable obligation data and an average action value of $18,861,280.78.

Agency ID
9700
PIID
N0002418C2305
Type
Award
Total Obligated
5.34 billion
5,337,742,461.86
Actions
283
Average Action Value
18,861,280.78

Overview

The award record for PIID N0002418C2305 shows 283 recorded actions within the last 10 years. Total obligated funding is $5,337,742,461.86, with an average action value of $18,861,280.78.

How to use this page

Use this page to review the scale and frequency of obligation activity tied to this award number. The figures are useful for procurement analysis, audit review, and comparing action volume against obligated totals.

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 = 'N0002418C2305'
    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 5,337,742,461.86 5.34 billion 283

Insight

Obligations for PIID N0002418C2305 are entirely concentrated in a single top agency: DEPT OF THE NAVY (Agency ID 1700). Over the 10-year window, this agency accounts for $5.34 billion across 283 awards, indicating a highly concentrated award distribution with no other agency listed in the provided data. This pattern suggests the award activity is predominantly Navy-driven.

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 = 'N0002418C2305'
        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
BATH IRON WORKS CORPORATION 70876 5,337,742,461.86 5.34 billion 283

Insight

BATH IRON WORKS CORPORATION is the sole top vendor identified for this award over the 10-year window, accounting for $5.34 billion across 283 awards. This indicates a highly concentrated obligation pattern with all reported vendor activity in this section attributed to one contractor. The volume and dollar value together suggest sustained reliance on this vendor for the referenced award.

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 = 'N0002418C2305'
    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 5,337,742,461.86 5.34 billion 283

Insight

The award is highly concentrated in NAICS 336611, Ship Building and Repairing, with $5.34 billion obligated across 283 awards over the 10-year window. This indicates the procurement activity is overwhelmingly aligned to ship construction and repair work, with no evidence in the provided rows of meaningful diversification across other NAICS codes. The award count suggests repeated procurement activity within the same industrial classification rather than a one-off obligation.

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 = 'N0002418C2305'
    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 5,337,742,461.86 5.34 billion 283

Insight

Over the 10-year window, obligations for PIID N0002418C2305 under Agency ID 9700 are entirely concentrated in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for $5.34 billion across 283 awards, indicating a highly focused procurement profile with no evidence of distribution across other PSCs in the provided 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 = 'N0002418C2305'
    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
2018 2,028,240,804.00 2.03 billion 3
2019 3,311,877.00 3.31 million 27
2020 1,340,604,740.00 1.34 billion 44
2021 788,283,981.00 788.28 million 47
2022 948,580,622.00 948.58 million 41
2023 22,971,791.86 22.97 million 46
2024 69,241,027.00 69.24 million 30
2025 136,507,619.00 136.51 million 45

Insight

Obligations are highly concentrated in 2018, which accounts for 2.03 billion and far exceeds every subsequent year in the 10-year window. Annual obligations then drop sharply and remain materially lower, with a secondary high in 2020 at 1.34 billion and 2021-2022 sustained below 1.0 billion. Award counts are more dispersed, ranging from 3 in 2018 to 47 in 2021, indicating that higher award volume does not correspond to comparable obligated value 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.