Award Number

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

FPDS query page for award number N0002417C2117 under agency ID 9700, summarizing obligation and action history over the last 10 years.

This award record shows 312 actions over the last 10 years, with total obligated spending of $24.46 billion and an average action value of $78.41 million. The page is intended for analysis of the award's obligation pattern and activity volume.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated exact is 24,463,811,834 and should be used for precise reporting; readable totals are rounded.

Agency ID
9700
PIID
N0002417C2117
Type
Award
Total Obligated
24.46 billion
24,463,811,834.00
Actions
312
Average Action Value
78,409,653.31

Overview

The award history for N0002417C2117 covers 312 recorded actions in the last 10 years. Total obligated value is $24,463,811,834, with an average action value of $78,409,653.31.

How to use this page

Use this page to review the award's obligation total, action count, and average action value in one place. It supports basic trend review and comparison against other award records within 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 = 'N0002417C2117'
    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 24,463,811,834.00 24.46 billion 312

Insight

Obligations for PIID N0002417C2117 over the 10-year window are fully concentrated in a single top agency: the Department of the Navy. The Navy accounts for $24.46 billion across 312 awards, indicating that this award activity is entirely within one agency relationship rather than being 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 = 'N0002417C2117'
        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 24,463,811,834.00 24.46 billion 312

Insight

Obligations under PIID N0002417C2117 are highly concentrated with a single vendor. ELECTRIC BOAT CORPORATION (CAGE 96169) accounts for all reported obligations in the 10-year window, totaling $24.46 billion across 312 awards. This indicates complete vendor concentration for this award record, with no distribution across additional vendors in the provided data.

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 = 'N0002417C2117'
    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
541330 ENGINEERING SERVICES 24,463,811,834.00 24.46 billion 312

Insight

Obligations for PIID N0002417C2117 are fully concentrated in NAICS 541330, Engineering Services, over the 10-year window. The award accounts for 24.46 billion across 312 obligations, indicating repeated procurement activity within a single services category rather than a diversified NAICS mix. This concentration suggests the award’s scope remained consistently aligned to engineering services throughout the period.

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 = 'N0002417C2117'
    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 24,463,811,834.00 24.46 billion 312

Insight

Obligations are concentrated entirely in PSC 1905, Combat Ships and Landing Vessels, with $24.46 billion across 312 awards over the 10-year window. This indicates the award record is highly specialized and strongly weighted toward naval combat vessel and landing craft requirements. The distribution suggests limited PSC diversity within this award profile.

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 = 'N0002417C2117'
    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
2017 558,428,787.00 558.43 million 7
2018 1,389,033,583.00 1.39 billion 21
2019 1,397,089,335.00 1.40 billion 26
2020 1,743,249,406.00 1.74 billion 39
2021 2,453,192,367.00 2.45 billion 46
2022 2,898,231,116.00 2.90 billion 39
2023 4,994,687,279.00 4.99 billion 46
2024 5,688,080,080.00 5.69 billion 40
2025 3,341,819,881.00 3.34 billion 48

Insight

Obligations for PIID N0002417C2117 increased markedly over the period, rising from $558.4 million in 2017 to a peak of $5.69 billion in 2024 before declining to $3.34 billion in 2025. Award activity also expanded, moving from 7 awards in 2017 to a high of 48 in 2025, with 39–46 awards annually from 2020 through 2025. The obligation pattern is concentrated in the later years, particularly 2023–2025, which account for the largest annual dollar volumes in the 10-year window.

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.