Award Number

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

Award number N0002420C2120 under agency ID 9700 recorded 51 actions in the last full year, with total obligations of $737.36 million.

This award page summarizes activity for award number N0002420C2120 during the last full year. The record shows 51 award actions and $737,358,680 in total obligated value, with an average action value of $14,458,013.33.

Generated at 03/20/2026

Analysis period: Last full year

Analysis is limited to the last full year and reflects the provided obligated totals, action count, and average action value for agency ID 9700.

Agency ID
9700
PIID
N0002420C2120
Type
Award
Total Obligated
737.36 million
737,358,680.00
Actions
51
Average Action Value
14,458,013.33

Overview

The award record for N0002420C2120 shows substantial activity over the last full year, with 51 actions and total obligations of $737,358,680. The average action value of $14,458,013.33 provides a simple measure of scale across the recorded actions.

How to use this page

Use this page to review award-level obligation totals and action volume for agency ID 9700 within the selected analysis window. It is useful for quick comparison of funding magnitude and transaction count without adding information beyond the underlying record.

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 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 737,358,680.00 737.36 million 51

Insight

For PIID N0002420C2120 over the past 1 year, obligations are concentrated entirely within the DEPT OF THE NAVY, which accounts for $737.36 million across 51 awards. This indicates a highly concentrated award distribution under the queried agency structure, with no other agencies appearing in the provided results. The concentration suggests the award activity is dominated by Navy-related obligations during the selected window.

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 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
ELECTRIC BOAT CORPORATION 96169 737,358,680.00 737.36 million 51

Insight

Within the 1-year window for award PIID N0002420C2120 under agency 9700, obligations are fully concentrated with a single vendor. ELECTRIC BOAT CORPORATION (CAGE 96169) accounts for $737.36 million across 51 awards, indicating a high degree of vendor concentration and repeated award activity. This pattern suggests the award structure is heavily reliant on one incumbent contractor rather than being distributed across multiple vendors.

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 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 737,358,680.00 737.36 million 51

Insight

Obligations for PIID N0002420C2120 over the 1-year window are fully concentrated in NAICS 336611, Ship Building and Repairing. The award records 51 obligations in this single NAICS, totaling $737.36 million, indicating no observable NAICS diversification within the provided data. This concentration suggests the award is entirely aligned to shipbuilding 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 = 'N0002420C2120'
    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 737,358,680.00 737.36 million 51

Insight

Within the 1-year window, obligations for PIID N0002420C2120 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, with $737.36 million obligated across 51 awards. This indicates a highly focused procurement profile with no observed distribution across other PSCs in the provided data. The volume and dollar concentration suggest this PSC is the dominant driver of obligated activity for the award.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 737,358,680.00 737.36 million 51

Insight

For Agency 9700, award PIID N0002420C2120 shows 2025 obligations of $737.36 million across 51 awards in the 1-year window. This indicates a high concentration of obligated dollars in a single fiscal year, with an average obligation of roughly $14.5 million per award. The distribution suggests substantial award activity, but no multi-year trend can be assessed from the provided row alone.

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.