Award Number

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

Award number N0002416C2431 for agency 9700 shows 226 actions over the last 5 years and $62.88 million in obligated value.

This award record covers PIID N0002416C2431 under agency ID 9700 for the last 5 years. It includes 226 award actions and total obligated amount of $62,875,458.94.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar values are shown as provided for the 5-year analysis window, with a readable total of $62.88 million and an average action value of $278,210.

Agency ID
9700
PIID
N0002416C2431
Type
Award
Total Obligated
62.88 million
62,875,458.94
Actions
226
Average Action Value
278,210.00

Overview

The award identified by PIID N0002416C2431 is associated with agency ID 9700 in the FPDS query context. Over the last 5 years, the record reflects 226 actions and total obligated value of $62,875,458.94. The average action value in this window is $278,210.

How to use this page

Use this page to review award activity, obligated value, and action volume for PIID N0002416C2431. It is suitable for comparing this award against other records in agency 9700 using the same 5-year analysis window.

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 = 'N0002416C2431'
    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 62,875,458.94 62.88 million 226

Insight

Over the 5-year window, obligations associated with PIID N0002416C2431 are fully concentrated within the DEPT OF THE NAVY (agency ID 1700). The Navy accounts for $62.88 million across 226 awards, indicating a narrowly distributed award profile with no other agencies present in the provided data. This concentration suggests the activity is entirely aligned to a single agency portfolio rather than spread across multiple civilian or defense organizations.

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 = 'N0002416C2431'
        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
HUNTINGTON INGALLS INCORPORATED 34293 62,875,458.94 62.88 million 226

Insight

Obligations for PIID N0002416C2431 are fully concentrated with HUNTINGTON INGALLS INCORPORATED (CAGE 34293) over the 5-year window. The vendor accounts for $62.88 million across 226 awards, indicating sustained and highly concentrated award activity rather than a broad vendor distribution.

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 = 'N0002416C2431'
    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 62,875,458.94 62.88 million 226

Insight

Over the 5-year window, this award is fully concentrated in NAICS 336611, Ship Building and Repairing, with $62.88 million obligated across 226 actions. This indicates a highly focused procurement profile tied to shipbuilding or repair activity, with no observable diversification across other NAICS codes in the provided data. The volume of actions relative to obligations suggests repeated transactions within a single industrial classification rather than broad spending distribution.

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 = 'N0002416C2431'
    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
1905 COMBAT SHIPS AND LANDING VESSELS 62,875,458.94 62.88 million 226

Insight

Over the 5-year window, obligations for award N0002416C2431 are entirely concentrated in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for $62.88 million across 226 awards, indicating a highly focused spending pattern rather than a broad distribution across product service codes.

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 = 'N0002416C2431'
    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 7,993,268.94 7.99 million 80
2022 16,786,147.00 16.79 million 72
2023 17,725,634.00 17.73 million 40
2024 21,020,000.00 21.02 million 29
2025 -649,591.00 -649.59 thousand 5

Insight

Obligations under PIID N0002416C2431 increased from $7.99 million in 2021 to $21.02 million in 2024, indicating a steady upward trend over the four full years. Award activity declined over the same period, from 80 awards in 2021 to 29 in 2024, suggesting higher dollars were concentrated in fewer awards. In 2025, recorded obligations are negative $649.59 thousand across 5 awards, which may reflect deobligations or year-to-date adjustments rather than a continuation of prior-year growth.

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.