Award Number

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

FPDS award number page for PIID N0002424C2301 under agency ID 9700, covering last full year activity.

This page summarizes award number N0002424C2301 for agency ID 9700 during the last full year. The award recorded 20 actions and total obligations of 1.72 billion.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the last full year and use the provided readable and exact obligation values.

Agency ID
9700
PIID
N0002424C2301
Type
Award
Total Obligated
1.72 billion
1,721,740,929.00
Actions
20
Average Action Value
86,087,046.45

Overview

The award number N0002424C2301 is associated with agency ID 9700 and shows 20 award actions in the last full year. Total obligated funding was 1,721,740,929, with an average action value of 86,087,046.45. These figures provide a focused view of activity tied to this specific PIID.

How to use this page

Use this page to review the scope and pace of award activity for N0002424C2301 over the last full year. The action count, total obligated amount, and average action value support basic analysis of obligation volume and transaction 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 = 'N0002424C2301'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 1,721,740,929.00 1.72 billion 20

Insight

Within the 1-year window for award PIID N0002424C2301, obligations are fully concentrated in one top agency: DEPT OF THE NAVY (agency 1700). The Navy accounts for $1.72 billion across 20 awards, indicating all identified obligation activity in this slice is concentrated with a single agency rather than distributed across multiple agencies. This pattern suggests a highly focused award footprint for the period reviewed.

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 1 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 1,721,740,929.00 1.72 billion 20

Insight

NATIONAL STEEL AND SHIPBUILDING COMPANY accounts for all reported obligated dollars in this 1-year view, totaling $1.72 billion across 20 awards. This indicates complete vendor concentration for PIID N0002424C2301, with no other vendors contributing within the provided rows. The obligation profile is therefore highly concentrated in a single supplier relationship.

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 1 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 1,721,740,929.00 1.72 billion 20

Insight

Over the 1-year window for award PIID N0002424C2301, obligations are fully concentrated in NAICS 336611, Ship Building and Repairing. This NAICS accounts for 20 awards and $1.72 billion in total obligated value, indicating a highly focused procurement profile with no visible diversification across other industry sectors in the provided data.

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 1 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 1,721,740,929.00 1.72 billion 20

Insight

Over the 1-year window, obligations for award N0002424C2301 are fully concentrated in PSC 1915, CARGO AND TANKER VESSELS. The award accounts for 20 actions totaling $1.72 billion, indicating a highly focused procurement profile rather than a diversified PSC mix. This concentration suggests the award is primarily tied to a single vessel category with no evidence in the provided data of material distribution across other 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 = 'N0002424C2301'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 1,721,740,929.00 1.72 billion 20

Insight

Over the 1-year window, award activity is concentrated entirely in FY2025, with $1.72 billion obligated across 20 awards. This indicates a high level of obligation in a single fiscal year rather than a multi-year spread. The average obligation is substantial, suggesting a small number of large awards or otherwise highly concentrated spending within the period.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.