Award Number

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

Federal procurement analysis for award number N0002416C2116 under agency ID 9700, showing five-year obligation and action history.

This page summarizes award-level activity for PIID N0002416C2116 over the last 5 years. The award shows total obligated funding of 8.33 billion across 272 actions, with an average action value of 30,640,798.16.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation totals are shown as provided for the last 5 years and may reflect rounded and exact values in the source data.

Agency ID
9700
PIID
N0002416C2116
Type
Award
Total Obligated
8.33 billion
8,334,297,099.49
Actions
272
Average Action Value
30,640,798.16

Overview

The award record for N0002416C2116 shows 8,334,297,099.49 in total obligated funding across 272 award actions in the last 5 years. The average action value is 30,640,798.16, indicating substantial activity within this award record. Agency ID 9700 is the associated agency identifier in the provided data.

How to use this page

Use this page to review award-level funding and action volume for N0002416C2116 over the selected analysis window. The totals support comparison across awards, while the action count and average action value provide a compact view of activity distribution.

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 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 8,334,297,099.49 8.33 billion 272

Insight

Over the 5-year window, obligations for PIID N0002416C2116 are fully concentrated in a single top agency: the Department of the Navy, with $8.33 billion across 272 awards. This indicates the award activity is entirely Navy-centric, with no evidence of distribution across other agencies in the provided data. The award volume suggests repeated use or multiple related actions within the same agency rather than cross-agency dispersal.

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 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 8,334,297,099.49 8.33 billion 272

Insight

HUNTINGTON INGALLS INCORPORATED (CAGE 43689) is the sole top vendor in this 5-year window for award N0002416C2116, with $8.33 billion in obligated value across 272 awards. Obligations are fully concentrated with one vendor in the provided data, indicating a highly concentrated award profile for this period. The volume of awards alongside the large obligated total suggests sustained, repeated funding to the same contractor rather than a broadly distributed vendor base.

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 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 8,334,297,099.49 8.33 billion 272

Insight

Over the 5-year window, obligations for this award are entirely concentrated in NAICS 336611, Ship Building and Repairing. The single reported NAICS accounts for $8.33 billion across 272 awards, indicating a highly focused procurement profile with no diversification evident in the provided data. This concentration suggests the award is tied predominantly to ship construction and repair activities.

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 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 8,334,297,099.49 8.33 billion 272

Insight

Over the 5-year window, obligations for award N0002416C2116 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for the entire reported total of $8.33 billion across 272 awards, indicating a highly concentrated procurement profile. No other PSCs are represented in the provided rows, so the distribution cannot be characterized as diversified within this dataset.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 for PIID N0002416C2116 were elevated throughout the 5-year window, ranging from $1.30 billion to $2.31 billion annually, indicating a highly concentrated award profile. Annual award activity increased from 33 awards in 2021 to a peak of 70 in 2023, then remained high in 2024 and 2025, suggesting sustained execution with greater distribution across awards in the middle of the period. Total obligated dollars declined in 2023 before rebounding in 2024 and rising sharply in 2025, when funding reached the highest level in the window despite fewer awards than in 2023-2024.

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.