Award Number

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

Award number N0002418C2406 for agency 9700 shows 338 recorded actions and $4.63 billion obligated over the last 10 years.

This page summarizes obligation activity for award number N0002418C2406 within agency ID 9700 over the last 10 years. The record shows 338 award actions and $4,631,267,196 in total obligated value.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated is shown as both a readable amount and its exact numeric value, with average action value calculated from the reported totals.

Agency ID
9700
PIID
N0002418C2406
Type
Award
Total Obligated
4.63 billion
4,631,267,196.00
Actions
338
Average Action Value
13,701,973.95

Overview

Award number N0002418C2406 is associated with 338 recorded actions in the analysis window. Across those actions, total obligated value is $4,631,267,196, with an average action value of $13,701,973.95. This view is limited to the last 10 years and the supplied agency identifier, 9700.

How to use this page

Use this page to review the overall scale and cadence of obligation activity tied to this award number. The totals help frame the award’s concentration of funding, while the action count and average action value provide a compact measure of activity 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 = 'N0002418C2406'
    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,631,267,196.00 4.63 billion 338

Insight

Within the 10-year window, the award’s obligated dollars are concentrated entirely under the DEPT OF THE NAVY (agency ID 1700). This agency accounts for $4.63 billion across 338 awards, indicating a sustained and highly concentrated obligation pattern within the available top-agency data. No other agencies appear in the provided rows, so the observed distribution is single-agency dominated.

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 = 'N0002418C2406'
        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 34293 4,631,267,196.00 4.63 billion 338

Insight

HUNTINGTON INGALLS INCORPORATED accounts for the full reported vendor concentration in this 10-year window, with $4.63 billion obligated across 338 awards. This indicates a highly concentrated award pattern for PIID N0002418C2406, with all reported obligations attributed to a single vendor. The distribution suggests sustained reliance on this contractor over the period reviewed.

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 = 'N0002418C2406'
    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,631,267,196.00 4.63 billion 338

Insight

Obligations for PIID N0002418C2406 are fully concentrated in NAICS 336611, Ship Building and Repairing, with $4.63 billion obligated across 338 awards in the 10-year window. This indicates a highly specialized procurement profile with no observed NAICS diversification in the provided data. The volume of awards suggests repeated procurement activity within the same industrial base rather than broad distribution across sectors.

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 = 'N0002418C2406'
    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,631,267,196.00 4.63 billion 338

Insight

Obligations for award N0002418C2406 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, accounting for $4.63 billion across 338 awards in the 10-year window. This indicates a highly focused procurement profile with no evidence of PSC diversification within the provided data. The volume of awards suggests repeated contracting activity within the same product/service category rather than a broad mix of PSCs.

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 = 'N0002418C2406'
    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
2018 81,927,887.00 81.93 million 3
2019 1,371,665,673.00 1.37 billion 34
2020 565,622,373.00 565.62 million 66
2021 968,560,157.00 968.56 million 75
2022 245,622,973.00 245.62 million 46
2023 1,299,573,106.00 1.30 billion 34
2024 12,346,926.50 12.35 million 39
2025 85,948,100.50 85.95 million 41

Insight

Obligations for PIID N0002418C2406 are highly concentrated in 2019 and 2023, which together account for the largest annual totals at 1.37 billion and 1.30 billion, respectively. Activity is otherwise distributed across lower-obligation years, with award counts peaking in 2021 at 75 and remaining elevated in 2020, 2022, 2024, and 2025. The 2024 total drops sharply to 12.35 million despite 39 awards, indicating a substantial decline in obligated value relative to prior years.

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.