Award Number

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

Award number N0002420C2120 for Agency ID 9700 shows obligated activity over the last 5 years.

This award page summarizes federal procurement activity for award number N0002420C2120 under Agency ID 9700. In the last 5 years, the award shows 272 actions and total obligated amounts of 3.58 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the last 5 years, with exact obligated value of 3581806470.5 and average action value of 13168406.14.

Agency ID
9700
PIID
N0002420C2120
Type
Award
Total Obligated
3.58 billion
3,581,806,470.50
Actions
272
Average Action Value
13,168,406.14

Overview

The award record for N0002420C2120 covers 272 reported actions in the last 5 years. Total obligated value is 3581806470.5, which rounds to 3.58 billion, and the average action value is 13168406.14. These figures provide a concise view of the award's reported procurement volume within Agency ID 9700.

How to use this page

Use this page to review award-level obligated totals and action count for N0002420C2120 across the last 5 years. The figures can support procurement analysis, award comparisons, and monitoring of activity patterns tied to Agency ID 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 = 'N0002420C2120'
    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 3,581,806,470.50 3.58 billion 272

Insight

Over the 5-year window for award PIID N0002420C2120, obligations are fully concentrated in the DEPT OF THE NAVY, which accounts for $3.58 billion across 272 awards. No other agencies are listed in the provided rows, indicating all reported obligation activity in this section is attributable to a single agency. This level of concentration suggests the award is tightly aligned to one funding/customer source 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 = '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 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
ELECTRIC BOAT CORPORATION 96169 3,581,806,470.50 3.58 billion 272

Insight

Obligations under PIID N0002420C2120 are fully concentrated with ELECTRIC BOAT CORPORATION (CAGE 96169), which accounts for $3.58 billion across 272 awards over the 5-year window. This indicates a highly concentrated vendor profile with no other vendors represented in the provided data. The volume of awards alongside the obligated amount suggests repeated funding activity with the same vendor 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 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 3,581,806,470.50 3.58 billion 272

Insight

Over the 5-year window, obligations under PIID N0002420C2120 are fully concentrated in NAICS 336611, Ship Building and Repairing. This NAICS accounts for $3.58 billion across 272 awards, indicating sustained, highly focused procurement activity with no diversification across other industries in the provided data.

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 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 3,581,806,470.50 3.58 billion 272

Insight

For award PIID N0002420C2120 over the 5-year window, obligations are fully concentrated in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for $3.58 billion across 272 awards, indicating a highly concentrated procurement profile with no diversification across additional PSCs in the provided data. The volume of awards suggests repeated obligation activity within the same category rather than a broad distribution of spend.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 under PIID N0002420C2120 remained consistently high over the 5-year window, increasing from $540.58 million in 2021 to a peak of $822.57 million in 2023 before easing to $730.01 million in 2024 and $737.36 million in 2025. Award counts were relatively stable but trended slightly downward, from 57 in 2021 to 51 in 2025, indicating a modest concentration of obligations across fewer awards over time.

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.