Award Number

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

Award number N0002413C2128 for agency 9700 shows 46 actions and $57.85 million obligated over the last 5 years.

This page summarizes award number N0002413C2128 for agency ID 9700 over the last 5 years. The award records 46 actions and $57,847,747 in total obligated amount, with an average action value of $1,257,559.72.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation totals are based on the provided analysis window and may differ from values shown in other reporting views.

Agency ID
9700
PIID
N0002413C2128
Type
Award
Total Obligated
57.85 million
57,847,747.00
Actions
46
Average Action Value
1,257,559.72

Overview

The award record for N0002413C2128 shows 46 actions in the last 5 years, with total obligated funding of $57,847,747. The average action value is $1,257,559.72, indicating repeated activity across the analysis window.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for N0002413C2128. The data is organized for quick reference and comparison within the specified five-year period.

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 = 'N0002413C2128'
    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 57,847,747.00 57.85 million 46

Insight

Over the 5-year window, obligations on PIID N0002413C2128 are fully concentrated in a single agency: the Department of the Navy (agency ID 1700). The Navy accounts for 46 awards totaling $57.85 million, indicating that this award has been managed entirely within one agency rather than distributed across multiple agencies. This concentration suggests a stable, agency-specific funding and acquisition pattern for the instrument.

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 = 'N0002413C2128'
        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 57,847,747.00 57.85 million 46

Insight

ELECTRIC BOAT CORPORATION is the sole top vendor in this 5-year window for award PIID N0002413C2128 under agency 9700, indicating complete vendor concentration in the reported top-vendor set. The vendor accounts for $57.85 million across 46 awards, suggesting repeated obligation activity rather than a single large transaction. This pattern indicates a high degree of award distribution to one contractor within the analyzed period.

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 = 'N0002413C2128'
    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
541330 ENGINEERING SERVICES 57,847,747.00 57.85 million 46

Insight

Over the 5-year window, obligations under PIID N0002413C2128 are concentrated entirely in NAICS 541330, Engineering Services, with $57.85 million obligated across 46 awards. This indicates a narrow technical services profile with no diversification across other NAICS codes in the provided data. The repeated use of a single NAICS suggests this award has been consistently aligned to engineering services requirements.

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 = 'N0002413C2128'
    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 57,847,747.00 57.85 million 46

Insight

Obligations for PIID N0002413C2128 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, with $57.85 million across 46 awards/actions in the 5-year window. This indicates a narrow procurement profile focused entirely on a single naval platform category, with no diversification across other PSCs in the provided data. The frequency of 46 records suggests repeated activity in the same mission area rather than a broad mix of acquisitions.

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 = 'N0002413C2128'
    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 12,419,318.00 12.42 million 16
2022 12,454,115.00 12.45 million 10
2023 36,024,682.00 36.02 million 11
2024 -3,050,368.00 -3.05 million 6
2025 0.00 0.00 3

Insight

Obligations were relatively stable in 2021 and 2022 at about $12.4 million annually, then increased sharply in 2023 to $36.02 million, indicating a pronounced concentration of funding in that year. Activity then declined in 2024, with net obligations of -$3.05 million across six awards, suggesting deobligations or downward adjustments rather than new growth. In 2025, three awards are recorded but no net obligations, indicating limited current-year funding activity in the available period.

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.