Award Number

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

Award number N0002416C2427 for Agency ID 9700 shows $82.82 million in total obligations across 50 actions in the last full year.

This page summarizes federal award activity for award number N0002416C2427 under Agency ID 9700 during the last full year. Total obligated amount was $82,815,770.09 across 50 award actions, with an average action value of $1,656,315.40.

Generated at 03/20/2026

Analysis period: Last full year

Totals are based on the provided analysis window and reflect the exact obligated amount of $82,815,770.09.

Agency ID
9700
PIID
N0002416C2427
Type
Award
Total Obligated
82.82 million
82,815,770.09
Actions
50
Average Action Value
1,656,315.40

Overview

Award number N0002416C2427 recorded 50 award actions in the last full year. The total obligated amount was $82,815,770.09, which is about $82.82 million in readable form. The average action value was $1,656,315.40.

How to use this page

Use this page to review award-level obligation activity for Agency ID 9700 over the last full year. The figures can support quick comparisons across actions, obligation totals, and average action size for this award number.

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 = 'N0002416C2427'
    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 82,815,770.09 82.82 million 50

Insight

Obligations for PIID N0002416C2427 in the 1-year window are fully concentrated within the DEPT OF THE NAVY (agency ID 1700). The agency accounts for $82.82 million across 50 awards, indicating all observed activity in this slice is tied to a single top agency. This pattern suggests a concentrated award distribution rather than a broad multi-agency spread.

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 = 'N0002416C2427'
        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
HUNTINGTON INGALLS INCORPORATED 34293 82,815,770.09 82.82 million 50

Insight

Obligations in the 1-year window are fully concentrated with HUNTINGTON INGALLS INCORPORATED (CAGE 34293), which received $82.82 million across 50 awards under PIID N0002416C2427. This indicates a single-vendor award structure with no observed distribution across additional vendors in the provided data. The award pattern suggests sustained contracting activity with the same vendor rather than broad vendor diversification.

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 = 'N0002416C2427'
    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 82,815,770.09 82.82 million 50

Insight

Over the 1-year window, obligations for award N0002416C2427 are fully concentrated in NAICS 336611, Ship Building and Repairing. This NAICS accounts for $82.82 million across 50 actions, indicating a highly focused procurement profile with no visible diversification in the provided rows. The pattern suggests the award is tied to a single industry segment rather than a broad mix of NAICS categories.

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 = 'N0002416C2427'
    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
1905 COMBAT SHIPS AND LANDING VESSELS 82,815,770.09 82.82 million 50

Insight

Award obligations for PIID N0002416C2427 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, with $82.82 million obligated across 50 awards in the 1-year window. This indicates a narrow product-service mix and consistent alignment of funding to a single ship-related PSC category. No other PSCs are represented in the provided rows, so there is no observable distribution across additional categories.

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 = 'N0002416C2427'
    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 82,815,770.09 82.82 million 50

Insight

For the 1-year window, obligations are concentrated in a single fiscal year: FY2025 accounts for $82.82 million across 50 awards. This indicates a substantial volume of activity in the period, with an average obligation of roughly $1.66 million per award. Because only one year is present, no year-over-year trend can be assessed from this query result.

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.