This page summarizes award number N0002418C2307 for agency ID 9700 across the last 10 years. The record includes 759 award actions with total obligated dollars of 6.72 billion.
Award Number
Award Number 9700 / N0002418C2307 Federal Contract Action Summary (Last 10 Years)
Federal procurement record for award number N0002418C2307 under agency ID 9700, showing activity over the last 10 years.
Totals reflect the provided analysis window and may differ from rounded figures because the exact obligated amount is 6721366373.74.
Overview
The award record for N0002418C2307 shows 759 actions over the last 10 years, with total obligated funding of 6721366373.74. The average action value is 8855555.17, indicating a large and active procurement record within agency ID 9700. This page is organized to support review of award-level procurement history without adding information beyond the reported totals.
How to use this page
Use this page to review the scale and frequency of award activity associated with N0002418C2307. The action count, total obligated amount, and average action value provide a compact basis for comparing this award against other records in the same agency or time 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 = 'N0002418C2307'
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 | 6,721,366,373.74 | 6.72 billion | 759 |
Insight
Obligations associated with PIID N0002418C2307 are fully concentrated in the DEPT OF THE NAVY, which accounts for the only reported agency in the 10-year window. The award totals $6.72 billion across 759 awards, indicating a highly concentrated funding pattern within a single agency rather than a distributed obligation profile.
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 = 'N0002418C2307'
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 |
|---|---|---|---|---|
| HUNTINGTON INGALLS INCORPORATED | 34293 | 6,721,366,373.74 | 6.72 billion | 759 |
Insight
Over the 10-year window, obligations for this award are fully concentrated with HUNTINGTON INGALLS INCORPORATED (CAGE 34293), which accounts for $6.72 billion across 759 awards. This indicates a highly concentrated vendor distribution with no evidence of diversification among additional vendors in the provided data. The award history suggests sustained reliance on a single contractor over time.
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 = 'N0002418C2307'
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 | 6,721,366,373.74 | 6.72 billion | 759 |
Insight
Obligations for PIID N0002418C2307 are fully concentrated in NAICS 336611, Ship Building and Repairing, with $6.72 billion obligated across 759 awards over the 10-year window. This indicates a highly concentrated procurement profile with no diversification across other NAICS codes in the provided data. The award count suggests repeated contracting activity within the same industrial base rather than a broad distribution of spending.
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 = 'N0002418C2307'
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 |
|---|---|---|---|---|
| 1905 | COMBAT SHIPS AND LANDING VESSELS | 6,721,366,373.74 | 6.72 billion | 759 |
Insight
Over the 10-year window, PSC 1905 (Combat Ships and Landing Vessels) accounts for all reported obligations on this award, totaling $6.72 billion across 759 awards. This indicates a highly concentrated obligation profile within a single maritime ship/landing vessel category. The volume of awards suggests repeated contractual activity, but no distribution across other PSCs is present in the provided data.
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 = 'N0002418C2307'
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 |
|---|---|---|---|
| 2018 | 2,659,698,262.00 | 2.66 billion | 2 |
| 2019 | 4,297,386.00 | 4.30 million | 42 |
| 2020 | 2,077,674,926.00 | 2.08 billion | 76 |
| 2021 | 640,948,356.00 | 640.95 million | 110 |
| 2022 | 801,901,954.00 | 801.90 million | 103 |
| 2023 | 113,167,122.85 | 113.17 million | 140 |
| 2024 | 109,056,943.00 | 109.06 million | 143 |
| 2025 | 314,621,423.89 | 314.62 million | 143 |
Insight
Obligations for PIID N0002418C2307 are highly concentrated in 2018 and 2020, which together account for the dominant share of the 10-year period at 2.66 billion and 2.08 billion, respectively. After those spikes, annual obligations drop sharply and remain at a much lower level from 2021 through 2025, ranging from 109.06 million to 801.90 million. Award volume, however, rises steadily from 2 awards in 2018 to 143 awards in 2024 and 2025, indicating a shift toward more numerous but smaller-dollar activity in later years.
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.