Award Number

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

Award number N0002415C2114 under agency ID 9700 shows federal procurement activity over the last 10 years, with 849 actions and $4.26 billion obligated.

This award record summarizes obligation history for award number N0002415C2114 in agency ID 9700 during the last 10 years. The record reflects 849 award actions and total obligated amount of $4,264,533,529.62, with an average action value of $5,023,007.69.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts are shown as reported for the selected 10-year analysis window and may include multiple action types across the award lifecycle.

Agency ID
9700
PIID
N0002415C2114
Type
Award
Total Obligated
4.26 billion
4,264,533,529.62
Actions
849
Average Action Value
5,023,007.69

Overview

Award number N0002415C2114 is associated with agency ID 9700 and shows obligation activity across the last 10 years. The record totals $4,264,533,529.62 obligated across 849 actions, for an average action value of $5,023,007.69. This view is useful for reviewing the scale and cadence of award activity without adding assumptions about the underlying work.

How to use this page

Use this page to review the award’s obligation total, action count, and average action value within the selected time window. It supports quick comparison against other awards, agencies, or periods using the same FPDS query structure. The figures here describe reported award activity only and do not infer performance or mission outcomes.

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 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 4,264,533,529.62 4.26 billion 849

Insight

Obligations for PIID N0002415C2114 are concentrated entirely within DEPT OF THE NAVY (agency ID 1700), which accounts for $4.26 billion across 849 awards over the 10-year window. This indicates a highly concentrated award profile with no evidence of 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 = '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 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 3,941,280,862.62 3.94 billion 799
HUNTINGTON INGALLS INCORPORATED 323,252,667.00 323.25 million 50

Insight

Award obligations are heavily concentrated with HUNTINGTON INGALLS INCORPORATED, which accounts for 3.94 billion across 799 awards under CAGE 43689. A second entry for the same vendor name, without a CAGE code, adds 323.25 million across 50 awards, indicating additional obligations recorded under a separate vendor identifier. Over the 10-year window, the award record is therefore strongly concentrated in a single vendor family, with relatively limited distribution beyond Huntington Ingalls.

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 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 4,264,533,529.62 4.26 billion 849

Insight

Obligations for PIID N0002415C2114 are fully concentrated in NAICS 336611, Ship Building and Repairing, with $4.26 billion across 849 awards over the 10-year window. This indicates the award portfolio is entirely aligned to ship construction and repair activity, with no diversification across other NAICS codes in the provided data. The volume of awards suggests repeated procurement activity within the same industrial base rather than a broad mix of requirements.

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 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 4,264,533,529.62 4.26 billion 849

Insight

Obligations for PIID N0002415C2114 are highly concentrated in PSC 1905, Combat Ships and Landing Vessels, with $4.26 billion obligated across 849 awards over the 10-year window. This indicates sustained activity in a single product/service category rather than broad PSC diversification. The award count suggests repeated procurement actions within the same PSC, supporting a concentrated spending profile.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 321,625,986.00 321.63 million 48
2017 646,610,733.05 646.61 million 63
2018 744,367,314.00 744.37 million 83
2019 651,617,054.75 651.62 million 75
2020 691,143,556.66 691.14 million 63
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 concentrated in 2017–2020, when annual funding ranged from $646.61 million to $744.37 million and award counts stayed between 63 and 83. A sharp drop appears in 2021, when obligated dollars fell to $71.02 million despite a higher award count of 104, indicating a shift toward smaller annual obligations. Award activity remained elevated in 2022–2025, with counts of 93–116, but obligated dollars were materially lower than the 2017–2020 peak period, ending at $64.90 million 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.