Award Number

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

Federal procurement summary for award N0002424C2301 under agency 9700 over the last 10 years.

This page provides an award-level view of PIID N0002424C2301 for agency 9700, covering the last 10 years of reported activity. The record shows 21 award actions with $2.50 billion in total obligated amount.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and use the exact obligated value of 2501740929.

Agency ID
9700
PIID
N0002424C2301
Type
Award
Total Obligated
2.50 billion
2,501,740,929.00
Actions
21
Average Action Value
119,130,520.43

Overview

Award N0002424C2301 is associated with agency 9700 and includes 21 recorded actions in the last 10 years. Total obligated funding is 2.50 billion, with an exact total of 2501740929 and an average action value of 119130520.43.

How to use this page

Use this page to review the award’s overall obligation profile and action frequency within the stated analysis window. The figures support quick comparison of total obligated value, action count, and average action value for this award.

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 = 'N0002424C2301'
    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 2,501,740,929.00 2.50 billion 21

Insight

Across the 10-year window for award PIID N0002424C2301, obligations are entirely concentrated in DEPT OF THE NAVY, which accounts for $2.50 billion across 21 awards. This indicates a highly concentrated funding profile with no visible spread across other agencies in the provided data. The distribution suggests the award relationship is anchored within a single agency rather than diversified across the federal portfolio.

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 = 'N0002424C2301'
        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 2,501,740,929.00 2.50 billion 21

Insight

Obligations under PIID N0002424C2301 are fully concentrated with NATIONAL STEEL AND SHIPBUILDING COMPANY (CAGE 81220), which accounts for $2.50 billion across 21 awards in the 10-year window. This indicates a highly concentrated vendor profile with no other reported top-vendor recipients in the provided data. The award pattern suggests sustained reliance on a single contractor rather than a distributed vendor base.

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 = 'N0002424C2301'
    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 2,501,740,929.00 2.50 billion 21

Insight

Obligations for PIID N0002424C2301 under agency 9700 are fully concentrated in NAICS 336611, Ship Building and Repairing, with $2.50 billion obligated across 21 awards over the 10-year window. This indicates a highly focused procurement pattern within a single industrial base rather than a diversified NAICS mix. The distribution suggests the award activity is concentrated in ship construction and repair work.

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 = 'N0002424C2301'
    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 2,501,740,929.00 2.50 billion 21

Insight

Obligations are fully concentrated in PSC 1915, Cargo and Tanker Vessels, with $2.50 billion across 21 awards. This indicates a highly focused procurement profile for PIID N0002424C2301 over the 10-year window, with no visible diversification across other PSCs in the provided data. The concentration suggests this award activity is tied primarily to vessel procurement or related requirements within this commodity 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 = 'N0002424C2301'
    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
2024 780,000,000.00 780.00 million 1
2025 1,721,740,929.00 1.72 billion 20

Insight

Obligations for PIID N0002424C2301 are highly concentrated in two fiscal years. FY 2024 accounts for 780.00 million across 1 award, while FY 2025 increases to 1.72 billion across 20 awards, indicating both a sharp increase in obligated dollars and a broader distribution of activity in the later year.

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.