Award Number

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

Award number N0002413C2305 for agency 9700 shows 668 actions over the last 10 years, with $2.83 billion obligated.

This page summarizes federal procurement activity for award number N0002413C2305 within agency 9700 over the last 10 years. The record includes 668 award actions and total obligated amount of $2,829,823,317.56.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from a single action record because they aggregate award activity across time.

Agency ID
9700
PIID
N0002413C2305
Type
Award
Total Obligated
2.83 billion
2,829,823,317.56
Actions
668
Average Action Value
4,236,262.45

Overview

Across the last 10 years, award number N0002413C2305 for agency 9700 records 668 award actions. Total obligated amount is $2,829,823,317.56, with an average action value of $4,236,262.45.

How to use this page

Use this page to review the scale and cadence of procurement activity tied to award number N0002413C2305. The action count and obligated totals provide a compact view of long-term award performance within agency 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 = 'N0002413C2305'
    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,829,823,317.56 2.83 billion 668

Insight

For PIID N0002413C2305 over the 10-year window, obligation activity is concentrated entirely within the DEPT OF THE NAVY. The Navy accounts for the full reported total of $2.83 billion across 668 awards, indicating a highly concentrated award pattern with no 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 = 'N0002413C2305'
        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 2,158,452,607.56 2.16 billion 621
BATH IRON WORKS CORPORATION 671,370,710.00 671.37 million 47

Insight

Obligations are highly concentrated with BATH IRON WORKS CORPORATION, which accounts for both listed vendor entries and the preponderance of funding over the 10-year window. The CAGE-coded entry (70876) totals $2.16 billion across 621 awards, while the additional entry without a CAGE code totals $671.37 million across 47 awards. This pattern indicates sustained, high-volume award activity to the same vendor entity, with obligations distributed across multiple actions rather than a small number of large awards.

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 = 'N0002413C2305'
    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,829,823,317.56 2.83 billion 668

Insight

Over the 10-year window, obligations for award N0002413C2305 are fully concentrated in NAICS 336611, Ship Building and Repairing. This NAICS accounts for the entire reported obligation total of $2.83 billion across 668 awards, indicating a highly focused industrial mix with no diversification across other NAICS codes in the provided data. The pattern is consistent with a program or contract portfolio centered on ship construction and repair activities.

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 = 'N0002413C2305'
    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,829,823,317.56 2.83 billion 668

Insight

Over the 10-year window, obligations are concentrated entirely in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for $2.83 billion across 668 awards, indicating sustained procurement activity within a single product/service category. The absence of other PSCs in the provided rows suggests a highly concentrated award profile for this PIID.

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 = 'N0002413C2305'
    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
2016 671,370,710.00 671.37 million 46
2017 1,627,140,023.00 1.63 billion 71
2018 36,070,386.00 36.07 million 100
2019 11,803,085.00 11.80 million 98
2020 44,226,710.00 44.23 million 62
2021 34,696,753.00 34.70 million 62
2022 22,819,732.00 22.82 million 57
2023 54,807,450.00 54.81 million 59
2024 191,400,388.00 191.40 million 56
2025 135,488,080.56 135.49 million 57

Insight

Obligations for PIID N0002413C2305 are highly concentrated in FY 2016–2017, which together account for the dominant share of the 10-year obligation total, including a peak of $1.63 billion in FY 2017. After FY 2017, annual obligations drop sharply and remain in a much lower band, generally between about $11.8 million and $54.8 million from FY 2018 through FY 2023. FY 2024 and FY 2025 indicate a renewed increase to $191.40 million and $135.49 million, respectively, while award counts remain relatively steady in the mid-50s to low-60s after FY 2020.

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.