Award Number

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

FPDS award page for award number N0002415C2114 under agency ID 9700, showing last-5-year obligations and action history.

This page summarizes federal procurement activity for award number N0002415C2114 in agency ID 9700 over the last 5 years. The award shows 517 actions and total obligated value of 1.21 billion dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated is 1209168885.16 and average action value is 2338817.96 for the selected analysis window.

Agency ID
9700
PIID
N0002415C2114
Type
Award
Total Obligated
1.21 billion
1,209,168,885.16
Actions
517
Average Action Value
2,338,817.96

Overview

Award number N0002415C2114 is listed under agency ID 9700 for the last 5 years of observed activity. The award has 517 recorded actions and total obligated value of 1209168885.16, with an average action value of 2338817.96.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for N0002415C2114. The figures are limited to the selected 5-year analysis window and reflect the provided FPDS award record.

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 = 'N0002415C2114'
    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 1,209,168,885.16 1.21 billion 517

Insight

Over the 5-year window, obligations for PIID N0002415C2114 are fully concentrated under the DEPT OF THE NAVY (agency ID 1700), which accounts for $1.21 billion across 517 awards. No other top agencies are listed in the provided rows, indicating the obligation profile is entirely centered on a single agency. This concentration suggests the award’s funding and activity are not distributed across multiple agencies within the available 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 = 'N0002415C2114'
        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 1,209,168,885.16 1.21 billion 517

Insight

Over the 5-year window, obligations under PIID N0002415C2114 are fully concentrated with HUNTINGTON INGALLS INCORPORATED (CAGE 43689), which accounts for $1.21 billion across 517 awards. This indicates a highly concentrated vendor profile with all reported activity attributed to a single contractor in the provided 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 = 'N0002415C2114'
    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 1,209,168,885.16 1.21 billion 517

Insight

For PIID N0002415C2114, obligations over the 5-year window are fully concentrated in NAICS 336611, Ship Building and Repairing. The award reflects $1.21 billion across 517 actions, indicating sustained, highly focused shipbuilding-related expenditure rather than a diversified NAICS mix. This concentration suggests the award’s activity is dominated by a single industrial category.

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 = 'N0002415C2114'
    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 1,209,168,885.16 1.21 billion 517

Insight

Over the 5-year window, obligations for PIID N0002415C2114 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, totaling $1.21 billion across 517 awards. This indicates a highly focused procurement profile with no observable PSC diversification in the provided data. The volume of award actions suggests repeated obligating activity within a single product/service category rather than a broad mix of 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 = 'N0002415C2114'
    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 71,019,185.94 71.02 million 104
2022 394,533,763.26 394.53 million 116
2023 517,960,761.18 517.96 million 104
2024 160,757,783.15 160.76 million 93
2025 64,897,391.63 64.90 million 100

Insight

Obligations for PIID N0002415C2114 were highly concentrated in 2022 and 2023, which together accounted for the largest share of the 5-year total at 394.53 million and 517.96 million, respectively. Activity then declined sharply in 2024 to 160.76 million and further to 64.90 million in 2025, indicating a significant reduction in annual funding levels after the 2023 peak. Award counts remained relatively stable overall, ranging from 93 to 116 per year, suggesting that the decline was driven more by lower obligated dollars than by a material change in the number of awards.

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.