Award Number

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

Federal procurement award record for award number N0002416C2229 under agency ID 9700, showing activity over the last 5 years.

This page summarizes award number N0002416C2229 for agency ID 9700 across the last 5 years. It shows 230 award actions with total obligated funding of $2.74 billion and an average action value of $11.93 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation totals and action counts reflect the provided analysis window and may differ from other reporting periods.

Agency ID
9700
PIID
N0002416C2229
Type
Award
Total Obligated
2.74 billion
2,742,826,496.22
Actions
230
Average Action Value
11,925,332.59

Overview

The award record for N0002416C2229 shows 230 actions within the last 5 years. Total obligated funding is $2,742,826,496.22, with an average action value of $11,925,332.59. This view is centered on the award number and agency ID 9700.

How to use this page

Use this page to review obligation totals and action volume for award number N0002416C2229. The figures provide a compact summary for identifying the scale of activity tied to this award over the selected period.

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 = 'N0002416C2229'
    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 2,742,826,496.22 2.74 billion 230

Insight

Obligations for PIID N0002416C2229 over the 5-year window are concentrated entirely with the DEPT OF THE NAVY, which accounts for $2.74 billion across 230 awards. This indicates a highly concentrated funding pattern with no other agencies appearing in the provided results. The distribution suggests the award is closely tied to Navy procurement activity rather than being broadly shared across agencies.

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 = 'N0002416C2229'
        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
NATIONAL STEEL AND SHIPBUILDING COMPANY 81220 2,742,826,496.22 2.74 billion 230

Insight

Obligations for PIID N0002416C2229 over the 5-year window are fully concentrated with a single vendor, NATIONAL STEEL AND SHIPBUILDING COMPANY (CAGE 81220). This vendor accounts for $2.74 billion across 230 awards, indicating a sustained, high-volume relationship rather than a dispersed vendor base. The absence of other vendors in the provided rows suggests no meaningful distribution of obligated dollars beyond this contractor within the 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 = 'N0002416C2229'
    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 2,742,826,496.22 2.74 billion 230

Insight

Obligations under PIID N0002416C2229 are fully concentrated in NAICS 336611, Ship Building and Repairing, with 2.74 billion obligated across 230 awards over the 5-year window. This indicates a highly focused procurement profile with no visible diversification across other NAICS codes in the provided data. The concentration is consistent with a shipbuilding and repair-related award base centered on a single industrial classification.

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 = 'N0002416C2229'
    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
1915 CARGO AND TANKER VESSELS 2,742,826,496.22 2.74 billion 230

Insight

Obligations for award N0002416C2229 in the 5-year window are fully concentrated in PSC 1915, CARGO AND TANKER VESSELS, with $2.74 billion across 230 awards. This indicates a highly focused procurement profile centered on vessel acquisition or support under a single PSC. No other PSC categories are represented in the provided rows, so the distribution is entirely concentrated in this code.

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 = 'N0002416C2229'
    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 98,778,337.32 98.78 million 32
2022 1,461,109,274.00 1.46 billion 45
2023 989,249,892.64 989.25 million 74
2024 115,920,729.05 115.92 million 45
2025 77,768,263.21 77.77 million 34

Insight

Obligations for PIID N0002416C2229 are highly concentrated in the middle of the 5-year window, rising from 98.78 million in 2021 to a peak of 1.46 billion in 2022, then remaining elevated at 989.25 million in 2023 before dropping sharply in 2024 and 2025. Award counts also increased during the peak funding period, from 32 in 2021 to 74 in 2023, then declined to 45 in 2024 and 34 in 2025. This pattern indicates a near-term surge in both funding and award activity followed by normalization at substantially lower obligation levels.

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.