Award Number

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

Federal procurement summary for award number N0002416C2229 at agency ID 9700 over the last 10 years, including obligation and action activity.

This page presents award-level procurement data for PIID N0002416C2229 under agency ID 9700 across the last 10 years. It shows total obligated amounts, action volume, and the average value per action for this award.

Generated at 03/20/2026

Analysis period: Last 10 years

Values are based on the provided analysis window and include total obligated readable of 5.82 billion, total obligated exact of 5822238104.64, 330 actions, and an average action value of 17643145.77.

Agency ID
9700
PIID
N0002416C2229
Type
Award
Total Obligated
5.82 billion
5,822,238,104.64
Actions
330
Average Action Value
17,643,145.77

Overview

The award record for PIID N0002416C2229 shows 5,822,238,104.64 in total obligated value over the last 10 years, with 330 recorded actions. The average action value is 17,643,145.77, which provides a simple measure of activity scale for this award.

How to use this page

Use this page to review obligation totals and action counts tied to award number N0002416C2229 within agency ID 9700. The figures support procurement analysis focused on award history, transaction volume, and average action size.

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 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 5,822,238,104.64 5.82 billion 330

Insight

Over the 10-year window, obligations for PIID N0002416C2229 are fully concentrated in the DEPT OF THE NAVY, which accounts for $5.82 billion across 330 awards. This indicates a single-agency award distribution with no visible diversification across other agencies in the provided data. The concentration suggests the award activity is strongly tied to Navy procurement requirements over the period.

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 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
NATIONAL STEEL AND SHIPBUILDING COMPANY 81220 5,180,031,348.64 5.18 billion 325
NATIONAL STEEL AND SHIPBUILDING COMPANY 642,206,756.00 642.21 million 5

Insight

Award activity under PIID N0002416C2229 is highly concentrated in NATIONAL STEEL AND SHIPBUILDING COMPANY, which accounts for $5.18 billion across 325 awards under CAGE 81220. An additional $642.21 million is recorded for the same vendor name without a CAGE code, across 5 awards, suggesting a separate identifier entry or data normalization issue that should be reviewed. Over the 10-year window, this indicates a strong vendor concentration on a single prime contractor with limited distribution across other vendors.

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 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 5,822,238,104.64 5.82 billion 330

Insight

Obligations for this award are fully concentrated in NAICS 336611, Ship Building and Repairing, with $5.82 billion obligated across 330 awards/actions in the 10-year window. This indicates the award is highly focused on ship construction and repair work, with no evidence in the provided data of meaningful diversification into other NAICS categories. The volume of actions alongside the large obligated amount suggests sustained procurement activity within a single industrial base.

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 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
1915 CARGO AND TANKER VESSELS 5,822,238,104.64 5.82 billion 330

Insight

Obligations for award N0002416C2229 are entirely concentrated in PSC 1915, Cargo and Tanker Vessels, totaling $5.82 billion across 330 awards. This indicates a highly focused procurement profile within the 10-year window, with no diversification across other PSCs in the provided results. The volume of awards alongside the large obligated amount suggests sustained procurement activity in this vessel category.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 642,206,756.00 642.21 million 4
2017 125,884,900.00 125.88 million 9
2018 1,359,298,254.00 1.36 billion 17
2019 26,071,337.92 26.07 million 30
2020 925,950,360.50 925.95 million 40
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 variable over the 10-year period, with major peaks in 2018 ($1.36 billion) and 2022 ($1.46 billion), alongside elevated levels in 2020 ($925.95 million) and 2023 ($989.25 million). Award volume generally increased over time, rising from 4 awards in 2016 to a high of 74 in 2023, indicating broader distribution of funding even when annual obligated amounts declined. Recent years show lower obligations in 2024 and 2025, suggesting a taper after the 2022–2023 high point.

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.