This page summarizes the award history for PIID N0002417C2105 for agency 9700 across the last 5 years. Total obligated amount is 385,558,146.53 across 639 award actions, for an average action value of 603,377.38.
Award Number
Award Number 9700 / N0002417C2105 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award N0002417C2105 under agency 9700, showing obligations and action activity over the last 5 years.
Amounts reflect the provided analysis window and may differ from other reports if filters or source extracts change.
Overview
In the last 5 years, award N0002417C2105 for agency 9700 recorded 639 actions and total obligations of 385,558,146.53. The average action value over that period was 603,377.38, which provides a simple measure of activity level across the award history.
How to use this page
Use this page to review the award at a glance, compare obligation totals, and assess how frequently actions were recorded during the analysis window. The values support basic monitoring and cross-checking against other FPDS views or agency-level summaries.
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 = 'N0002417C2105'
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 | 385,558,146.53 | 385.56 million | 639 |
Insight
Over the 5-year window, obligations for PIID N0002417C2105 are fully concentrated in a single top agency: the Department of the Navy. The Navy accounts for $385.56 million across 639 awards, indicating both dominant funding concentration and a high volume of award activity under this instrument. No other agencies are represented in the provided rows, so there is no evidence here of cross-agency distribution.
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 = 'N0002417C2105'
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 |
|---|---|---|---|---|
| HUNTINGTON INGALLS INCORPORATED | 43689 | 385,558,146.53 | 385.56 million | 639 |
Insight
HUNTINGTON INGALLS INCORPORATED (CAGE 43689) is the sole top vendor listed for PIID N0002417C2105 over the 5-year window, indicating complete concentration of obligations in a single contractor. The vendor received $385.56 million across 639 awards, suggesting a high volume of transactions within this award relationship. Because no other vendors are listed, there is no observable distribution across additional suppliers in this section.
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 = 'N0002417C2105'
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 | 385,558,146.53 | 385.56 million | 639 |
Insight
Obligations for PIID N0002417C2105 are fully concentrated in NAICS 336611, Ship Building and Repairing, with $385.56 million obligated across 639 awards in the 5-year window. This indicates a highly focused procurement profile aligned to shipbuilding and repair activities, with no evidence in the provided data of diversification into other NAICS sectors. The volume of award actions relative to obligated dollars suggests recurring contracting activity within the same industry segment.
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 = 'N0002417C2105'
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 | 385,558,146.53 | 385.56 million | 639 |
Insight
For PIID N0002417C2105 over the 5-year window, obligations are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, totaling $385.56 million across 639 awards. This indicates a highly focused procurement profile with no distribution across other PSCs in the provided data. The award count suggests repeated activity within the same product/service category rather than diversification 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 = 'N0002417C2105'
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 | 307,204,343.00 | 307.20 million | 318 |
| 2022 | 74,339,716.60 | 74.34 million | 283 |
| 2023 | 4,014,086.93 | 4.01 million | 21 |
| 2024 | 0.00 | 0.00 | 12 |
| 2025 | 0.00 | 0.00 | 5 |
Insight
Obligations for PIID N0002417C2105 are heavily concentrated in 2021, when funding totaled $307.20 million across 318 awards. Obligations declined sharply in 2022 to $74.34 million and fell again in 2023 to $4.01 million, indicating a steep downward trend in obligated value over the five-year window. Award counts remained relatively high through 2022, then dropped to 21 in 2023, with no obligations recorded in 2024 or 2025 despite continued award activity.
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.