Award Number

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

Award number N0002417C2117 under agency ID 9700 shows 219 award actions over the last 5 years, with total obligations of 19.38 billion.

This page summarizes federal procurement activity for award number N0002417C2117 under agency ID 9700. Over the last 5 years, the award recorded 219 actions and 19,376,010,723 in total obligated dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the specified 5-year analysis window; average action value is 88,474,934.81 based on the recorded action count and obligations.

Agency ID
9700
PIID
N0002417C2117
Type
Award
Total Obligated
19.38 billion
19,376,010,723.00
Actions
219
Average Action Value
88,474,934.81

Overview

Award number N0002417C2117 is associated with agency ID 9700 and the last 5 years of procurement activity in this query view. The record shows 219 award actions and total obligated dollars of 19,376,010,723, which yields an average action value of 88,474,934.81.

How to use this page

Use this page to review award-level obligation totals, action volume, and average action value for the selected analysis window. It is useful for tracking activity concentration and comparing this award against other procurement records in the same dataset.

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 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 19,376,010,723.00 19.38 billion 219

Insight

Over the 5-year window, obligations for PIID N0002417C2117 are fully concentrated in a single top agency: the Department of the Navy (agency ID 1700). The Navy accounts for $19.38 billion across 219 awards, indicating this award activity is entirely distributed within one agency rather than spread across multiple departments. This concentration suggests a highly focused procurement relationship with no diversification across other agencies in the provided data.

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 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 19,376,010,723.00 19.38 billion 219

Insight

Within the 5-year window for award PIID N0002417C2117 under agency 9700, obligations are fully concentrated with ELECTRIC BOAT CORPORATION (CAGE 96169). The vendor received 219 awards totaling $19.38 billion, indicating a highly concentrated award distribution with no other vendors represented in the provided data. This pattern suggests sustained reliance on a single prime contractor for this action.

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 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 19,376,010,723.00 19.38 billion 219

Insight

For PIID N0002417C2117 over the 5-year window, obligations are fully concentrated in NAICS 541330, Engineering Services, with $19.38 billion across 219 awards. This indicates a single-NAICS award profile with no visible diversification across other NAICS codes in the provided data. The volume of awards suggests repeated contracting activity within the same service category rather than a broad distribution of obligations.

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 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 19,376,010,723.00 19.38 billion 219

Insight

Over the 5-year window, obligations are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, with $19.38 billion across 219 awards. This indicates a highly focused procurement profile for award N0002417C2117, with no other PSCs reflected in the provided rows. The volume of awards alongside the large obligated value suggests sustained procurement activity within this single product/service category.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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

For award PIID N0002417C2117, annual obligations increased from 2.45 billion in 2021 to a peak of 5.69 billion in 2024, then declined to 3.34 billion in 2025. Award counts remained relatively stable within a narrow band of 39 to 48 per year, indicating that the obligation changes were driven more by funding volume per award than by large shifts in transaction volume. The 2023–2024 period accounts for the highest concentration of obligations across the five-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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.