Award Number

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

Award number N0002417C2117 shows 48 recorded actions in the last full year, with 3.34 billion obligated in total.

This award record for agency ID 9700 summarizes activity under PIID N0002417C2117 during the last full year. The award carried 48 actions and 3,341,819,881 in total obligations, for an average action value of 69,621,247.52.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the analysis window provided and the readable obligation figure of 3.34 billion, with exact obligations of 3,341,819,881.

Agency ID
9700
PIID
N0002417C2117
Type
Award
Total Obligated
3.34 billion
3,341,819,881.00
Actions
48
Average Action Value
69,621,247.52

Overview

In the last full year, award N0002417C2117 recorded 48 actions and 3,341,819,881 in total obligated funds. The average action value was 69,621,247.52, indicating a high-dollar award with multiple recorded changes over the period.

How to use this page

Use this page to review award-level activity for PIID N0002417C2117 under agency ID 9700 during the selected period. The figures support basic trend review, obligation sizing, and action-count comparison against other award records.

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 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 3,341,819,881.00 3.34 billion 48

Insight

Within the 1-year window for award PIID N0002417C2117 under agency 9700, obligations are concentrated in a single top agency: the Department of the Navy. The Navy accounts for $3.34 billion across 48 awards, indicating that this award activity is highly concentrated within one agency 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 = '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 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 3,341,819,881.00 3.34 billion 48

Insight

Within the 1-year window for award N0002417C2117, obligations are fully concentrated with ELECTRIC BOAT CORPORATION (CAGE 96169), which accounts for $3.34 billion across 48 awards. This indicates a high degree of vendor concentration with no other vendors represented in the provided rows. The distribution suggests a single-source or highly centralized award pattern 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 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
541330 ENGINEERING SERVICES 3,341,819,881.00 3.34 billion 48

Insight

For the 1-year period, obligations under this award are entirely concentrated in NAICS 541330, Engineering Services, with $3.34 billion across 48 awards. This indicates a highly focused procurement profile with no observed dispersion across other NAICS codes in the provided data. The volume of awards alongside the obligation amount suggests sustained activity within a single professional services category.

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 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 3,341,819,881.00 3.34 billion 48

Insight

Obligations for PIID N0002417C2117 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, totaling $3.34 billion across 48 awards in the 1-year window. This indicates a narrow procurement profile focused entirely on a single product/service classification, with no diversification across other PSCs in the provided data. The award count suggests multiple transactions within the same category rather than a broad distribution of spending.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 3,341,819,881.00 3.34 billion 48

Insight

For Agency 9700, PIID N0002417C2117 shows 2025 obligations of 3.34 billion across 48 awards. This indicates a highly concentrated funding profile, with substantial obligation volume in a limited number of actions within the 1-year window. The award appears to be a major, active procurement with material annual obligation intensity rather than a broad, distributed obligation pattern.

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.