This page summarizes award-level activity for PIID N0002423C2307 during the last 5 years. It shows total obligated amount, action count, and average action value for agency ID 9700.
Award Number
Award Number 9700 / N0002423C2307 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award number N0002423C2307 under agency ID 9700, showing obligation and action history over the last 5 years.
Totals shown here are based on the provided analysis window and reported obligated amounts, with exact and readable values both included.
Overview
In the last 5 years, award number N0002423C2307 recorded 161 actions and total obligated funding of 6,947,585,647.83, which is shown as 6.95 billion in readable form. The average action value across the period was 43,152,705.89. This page is focused on the award-level record associated with agency ID 9700.
How to use this page
Use this page to review the scale of obligation activity tied to PIID N0002423C2307 and to compare the action volume with the average value per action. The figures provide a compact view of award history over the selected 5-year window without adding details beyond the supplied record.
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 = 'N0002423C2307'
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 | 6,947,585,647.83 | 6.95 billion | 161 |
Insight
For PIID N0002423C2307 over the 5-year window, all recorded obligation activity is concentrated in a single top agency: the DEPT OF THE NAVY. This agency accounts for 161 awards totaling $6.95 billion, indicating highly concentrated award activity with no distribution across additional agencies in the provided rows.
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 = 'N0002423C2307'
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 | 6,947,585,647.83 | 6.95 billion | 161 |
Insight
HUNTINGTON INGALLS INCORPORATED (CAGE 34293) is the only top vendor associated with this award over the 5-year window, accounting for $6.95 billion across 161 awards. This indicates complete vendor concentration within the observed top-vendor set and a sustained obligation pattern to a single supplier. The award activity is highly consolidated, with no other vendors represented in the provided row set.
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 = 'N0002423C2307'
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 | 6,947,585,647.83 | 6.95 billion | 161 |
Insight
Over the 5-year window, obligations are fully concentrated in NAICS 336611, Ship Building and Repairing, at $6.95 billion across 161 awards. This indicates the award activity for PIID N0002423C2307 is entirely aligned to a single industry classification, with no diversification across other NAICS codes in the provided data. The award count suggests repeated contracting activity within this shipbuilding and repair category.
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 = 'N0002423C2307'
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 | 6,947,585,647.83 | 6.95 billion | 161 |
Insight
Over the 5-year window, obligations are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, with $6.95 billion across 161 awards. This indicates a clear product/service concentration for PIID N0002423C2307, with no other PSCs reflected in the provided rows. The award profile is therefore heavily skewed toward a single naval ship category rather than a diversified PSC mix.
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 = 'N0002423C2307'
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 |
|---|---|---|---|
| 2023 | 3,089,095,896.00 | 3.09 billion | 9 |
| 2024 | 1,390,317,051.00 | 1.39 billion | 57 |
| 2025 | 2,468,172,700.83 | 2.47 billion | 95 |
Insight
Obligations for PIID N0002423C2307 are concentrated across three years, with the highest funding in 2023 at $3.09 billion across 9 awards. Activity shifted to a larger number of awards in 2024 and 2025, while obligated dollars declined to $1.39 billion in 2024 before rising to $2.47 billion in 2025. The pattern indicates a move from a small number of high-value actions in 2023 to broader award distribution in later years, with spending remaining materially elevated in 2025.
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.