Award Number

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

Award number N0002420C2120 for agency 9700 summarizes obligation and action history over the last 10 years.

This award record shows 316 actions tied to award number N0002420C2120 for agency ID 9700. Total obligated amount over the analysis window is 4.21 billion, with an exact value of 4,206,289,236.5.

Generated at 03/20/2026

Analysis period: Last 10 years

Average action value across the 316 actions is 13,311,041.89, calculated from the obligated total and action count.

Agency ID
9700
PIID
N0002420C2120
Type
Award
Total Obligated
4.21 billion
4,206,289,236.50
Actions
316
Average Action Value
13,311,041.89

Overview

The award record for N0002420C2120 contains 316 actions within the last 10 years. Total obligated value is 4,206,289,236.5, which reads as 4.21 billion.

How to use this page

Use this page to review the award number, total obligated amount, and action count for agency 9700. The average action value of 13,311,041.89 provides a simple benchmark for comparing this award against other FPDS records.

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 = 'N0002420C2120'
    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 4,206,289,236.50 4.21 billion 316

Insight

Over the 10-year window, obligations for PIID N0002420C2120 are fully concentrated within the DEPT OF THE NAVY, with 4.21 billion obligated across 316 awards. No other agencies are listed in the provided rows, indicating the award activity captured here is single-agency and highly concentrated. This pattern suggests the award’s historical funding and execution are tied exclusively to the Navy within the available dataset.

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 = 'N0002420C2120'
        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
ELECTRIC BOAT CORPORATION 96169 4,206,289,236.50 4.21 billion 316

Insight

Obligations for PIID N0002420C2120 over the 10-year window are fully concentrated with ELECTRIC BOAT CORPORATION (CAGE 96169), which accounts for $4.21 billion across 316 awards. This indicates a single-vendor procurement pattern with no evidence of supplier diversification in the provided data. The volume of awards suggests repeated obligations to the same contractor rather than a distributed vendor base.

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 = 'N0002420C2120'
    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 4,206,289,236.50 4.21 billion 316

Insight

Obligations are fully concentrated in NAICS 336611, Ship Building and Repairing, with 4.21 billion obligated across 316 awards over the 10-year window. This indicates a highly focused procurement profile for PIID N0002420C2120 within a single industrial base category, with no evidence in the provided rows of material diversification across other NAICS codes. The award count suggests repeated contracting activity in the same sector rather than isolated outlays.

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 = 'N0002420C2120'
    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 4,206,289,236.50 4.21 billion 316

Insight

For PIID N0002420C2120 over the 10-year window, obligations are entirely concentrated in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for $4.21 billion across 316 awards, indicating a highly focused obligation profile with no other PSCs reflected in the provided data. The volume of awards suggests repeated activity within the same product category rather than diversification across multiple PSCs.

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 = 'N0002420C2120'
    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
2019 141,551,415.00 141.55 million 4
2020 482,931,351.00 482.93 million 40
2021 540,577,971.00 540.58 million 57
2022 751,291,597.00 751.29 million 56
2023 822,569,616.00 822.57 million 54
2024 730,008,606.50 730.01 million 54
2025 737,358,680.00 737.36 million 51

Insight

Obligations increased sharply from 2019 ($141.55 million across 4 awards) to 2020 ($482.93 million across 40 awards) and continued rising through 2023, peaking at $822.57 million across 54 awards. Award activity also expanded materially, reaching 57 awards in 2021 before stabilizing in the mid-50s in 2022–2024 and easing slightly to 51 in 2025. The pattern indicates a pronounced concentration of obligations in the 2020–2025 period, with annual funding remaining elevated despite modest variation in award count.

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.