Award Number

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

Federal procurement summary for award number N0002416C2116 under agency ID 9700, covering obligations and actions in the last full year.

This page presents the recent award activity for award number N0002416C2116. In the last full year, the award recorded 53 actions and 2,307,133,138.61 in total obligations, with an average action value of 43,530,813.94.

Generated at 03/20/2026

Analysis period: Last full year

Amounts reflect the analysis window of the last full year and use the exact obligated total of 2,307,133,138.61.

Agency ID
9700
PIID
N0002416C2116
Type
Award
Total Obligated
2.31 billion
2,307,133,138.61
Actions
53
Average Action Value
43,530,813.94

Overview

Award number N0002416C2116 is the tracked procurement identifier for this page. For the last full year, the award shows 53 recorded actions and total obligations of 2,307,133,138.61. The average action value across that window was 43,530,813.94.

How to use this page

Use this page to review the award's obligation level and action count within the selected reporting period. It is useful for quick comparison against other awards, for trend review, or as a starting point for deeper FPDS analysis.

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 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 2,307,133,138.61 2.31 billion 53

Insight

Within the 1-year window for PIID N0002416C2116, obligations are fully concentrated in a single top agency: the Department of the Navy. The Navy accounts for $2.31 billion across 53 awards, indicating that this award activity is narrowly distributed and heavily centered within one agency.

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 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
HUNTINGTON INGALLS INCORPORATED 43689 2,307,133,138.61 2.31 billion 53

Insight

Over the 1-year window, obligations for this award are fully concentrated with HUNTINGTON INGALLS INCORPORATED (CAGE 43689). The vendor received $2.31 billion across 53 awards, indicating repeated obligation activity rather than a one-time disbursement. This pattern suggests a high degree of vendor concentration for the reported period.

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 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
336611 SHIP BUILDING AND REPAIRING 2,307,133,138.61 2.31 billion 53

Insight

Within the 1-year window, obligations for PIID N0002416C2116 are entirely concentrated in NAICS 336611, Ship Building and Repairing, with $2.31 billion across 53 awards. This indicates a highly focused procurement profile with no observed diversification across other NAICS codes in the provided data. The distribution suggests the award activity is centered on ship construction and repair work under this contract.

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 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 2,307,133,138.61 2.31 billion 53

Insight

Within the 1-year window, PSC 1905 (Combat Ships and Landing Vessels) accounts for the full reported obligation in this section, totaling $2.31 billion across 53 awards. This indicates complete concentration of obligated value in a single PSC category for the listed award set, with no other PSCs represented. The distribution suggests the award activity is narrowly focused on naval combat vessel and landing craft-related procurement.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 2,307,133,138.61 2.31 billion 53

Insight

In the 1-year window, obligations for award N0002416C2116 are concentrated entirely in FY 2025, with $2.31 billion obligated across 53 awards. This indicates a high level of funding activity within a single fiscal year, with no other years present in the provided data to indicate broader distribution or multi-year trend. The obligation volume suggests a significant spike or continuation of concentrated procurement activity in FY 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.