This page summarizes award number N0002417C2100 for agency ID 9700 across the last 5 years. The award shows 366 actions and total obligated amounts of 22.49 billion.
Award Number
Award Number 9700 / N0002417C2100 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award number N0002417C2100 under agency ID 9700 over the last 5 years.
Values reflect the provided analysis window and reported obligations; average action value is 61,449,354.81.
Overview
Award number N0002417C2100 is associated with agency ID 9700 in the provided 5-year analysis window. The record includes 366 award actions and total obligated funding of 22,490,463,860, with an average action value of 61,449,354.81. These figures provide a direct summary of award activity and obligation volume for the period.
How to use this page
Use this page to review the award-level obligation total, action count, and average action value for N0002417C2100. The figures are useful for comparing this award against other award records in the same agency or time window and for tracking procurement activity at a high level.
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 = 'N0002417C2100'
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 | 22,490,463,860.00 | 22.49 billion | 366 |
Insight
Within the 5-year window for award PIID N0002417C2100, obligations are concentrated entirely in DEPT OF THE NAVY (agency ID 1700). The Navy accounts for $22.49 billion across 366 awards, indicating this record is heavily centered within a single top agency relationship 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 = 'N0002417C2100'
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 | 22,490,463,860.00 | 22.49 billion | 366 |
Insight
ELECTRIC BOAT CORPORATION accounts for all reported top-vendor obligation under award PIID N0002417C2100 in the 5-year window, with $22.49 billion across 366 awards. This indicates an extreme concentration of obligated dollars with a single vendor and a high award count, suggesting sustained contractual activity rather than a dispersed vendor base. No other vendors are listed in the provided rows, so distribution beyond this contractor cannot be assessed from the available 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 = 'N0002417C2100'
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 |
|---|---|---|---|---|
| 336611 | SHIP BUILDING AND REPAIRING | 22,490,463,860.00 | 22.49 billion | 366 |
Insight
Over the 5-year window, obligations for award N0002417C2100 at agency 9700 are fully concentrated in NAICS 336611, Ship Building and Repairing. This category accounts for $22.49 billion across 366 awards, indicating a highly focused procurement profile with no observed diversification across other NAICS codes in the provided data. The volume of awards suggests sustained activity within a single industrial base 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 = 'N0002417C2100'
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 | 22,490,463,860.00 | 22.49 billion | 366 |
Insight
Award activity for PIID N0002417C2100 is concentrated entirely in PSC 1905, Combat Ships and Landing Vessels. Over the 5-year window, this PSC accounts for $22.49 billion across 366 awards, indicating a highly focused procurement profile rather than a broad distribution across product service codes.
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 = 'N0002417C2100'
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 | 4,767,262,360.00 | 4.77 billion | 54 |
| 2022 | 3,881,041,690.00 | 3.88 billion | 51 |
| 2023 | 4,408,407,665.00 | 4.41 billion | 73 |
| 2024 | 776,210,455.00 | 776.21 million | 98 |
| 2025 | 8,657,541,690.00 | 8.66 billion | 90 |
Insight
Obligations for PIID N0002417C2100 are concentrated in a few high-value years, with annual totals ranging from 776.21 million in 2024 to 8.66 billion in 2025. The pattern is uneven: obligations declined from 4.77 billion in 2021 to 3.88 billion in 2022, recovered to 4.41 billion in 2023, dropped sharply in 2024, then increased markedly in 2025. Award counts do not track obligations proportionally, rising from 51–54 awards in 2021–2022 to 98 in 2024 and 90 in 2025, indicating a higher number of awards in the lower-obligation year and a strong concentration of dollars in 2025.
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.