This award page summarizes procurement activity for PIID N0002416C2116 across the last 10 years. The record shows total obligated amounts of $11.89 billion across 372 actions, with an average action value of $31.96 million.
Award Number
Award Number 9700 / N0002416C2116 Federal Contract Action Summary (Last 10 Years)
Federal procurement record for award number N0002416C2116 under agency ID 9700, showing obligations and actions over the last 10 years.
Amounts are based on the provided analysis window and may reflect obligation changes across multiple award actions.
Overview
This award record identifies PIID N0002416C2116 for agency ID 9700 and summarizes procurement activity within the last 10 years. Total obligated value is $11,890,953,286.85, with 372 award actions recorded and an average action value of $31,964,928.19.
How to use this page
Use this page to review the scale and frequency of obligation activity tied to this award number. The action count and obligated totals provide a concise starting point for tracking changes in funding over time.
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 = 'N0002416C2116'
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 | 11,890,953,286.85 | 11.89 billion | 372 |
Insight
Obligations for PIID N0002416C2116 over the 10-year window are fully concentrated within the Department of the Navy, which accounts for the entire observed amount. The single agency recorded 372 awards totaling $11.89 billion, indicating a highly concentrated funding pattern with no distribution 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 = 'N0002416C2116'
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 |
|---|---|---|---|---|
| HUNTINGTON INGALLS INCORPORATED | 43689 | 11,770,911,014.85 | 11.77 billion | 362 |
| HUNTINGTON INGALLS INCORPORATED | 120,042,272.00 | 120.04 million | 10 |
Insight
Award activity is highly concentrated with HUNTINGTON INGALLS INCORPORATED, which accounts for 362 awards and $11.77 billion in obligated value under CAGE 43689. A second entry for the same vendor name, without a CAGE code, reflects an additional 10 awards totaling $120.04 million. Over the 10-year window, obligations are overwhelmingly concentrated in one vendor identity, with only a smaller secondary record associated with the same name.
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 = 'N0002416C2116'
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 |
|---|---|---|---|---|
| 336611 | SHIP BUILDING AND REPAIRING | 11,890,953,286.85 | 11.89 billion | 372 |
Insight
For PIID N0002416C2116 over the 10-year window, obligations are fully concentrated in NAICS 336611, Ship Building and Repairing. This NAICS accounts for $11.89 billion across 372 awards, indicating sustained procurement activity within a single industrial classification. The distribution is highly concentrated, with no other NAICS codes reflected in the provided data.
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 = 'N0002416C2116'
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 | 11,890,953,286.85 | 11.89 billion | 372 |
Insight
Over the 10-year window, obligations for award N0002416C2116 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for $11.89 billion across 372 awards, indicating a highly focused procurement profile rather than a diversified mix of product services codes. The concentration suggests the award activity is consistently aligned with major naval combat ship and landing vessel requirements.
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 = 'N0002416C2116'
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 |
|---|---|---|---|
| 2016 | 115,242,272.00 | 115.24 million | 8 |
| 2017 | 216,210,646.00 | 216.21 million | 12 |
| 2018 | 668,349,663.00 | 668.35 million | 19 |
| 2019 | 1,348,139,440.57 | 1.35 billion | 27 |
| 2020 | 1,208,714,165.79 | 1.21 billion | 34 |
| 2021 | 1,434,585,953.94 | 1.43 billion | 33 |
| 2022 | 1,673,712,069.00 | 1.67 billion | 47 |
| 2023 | 1,301,403,438.00 | 1.30 billion | 70 |
| 2024 | 1,617,462,499.94 | 1.62 billion | 69 |
| 2025 | 2,307,133,138.61 | 2.31 billion | 53 |
Insight
Obligations under PIID N0002416C2116 increased substantially over the 10-year window, rising from $115.24 million in 2016 to $2.31 billion in 2025. Growth accelerated from 2018 through 2022, when annual obligations moved from $668.35 million to a peak of $1.67 billion, before moderating in 2023 and rebounding in 2024 and 2025. Award activity also became more concentrated over time, increasing from 8 awards in 2016 to a high of 70 in 2023, then remaining elevated at 69 in 2024 and 53 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.