The award number N0002424C2110 shows 10 recorded actions in the last 5 years with total obligations of 4.96 billion dollars. The average action value is 496001750 dollars based on the provided totals.
Award Number
Award Number 9700 / N0002424C2110 Federal Contract Action Summary (Last 5 Years)
This page summarizes award number N0002424C2110 for agency ID 9700 over the last 5 years, including obligation and action activity.
Figures on this page reflect the provided FPDS analysis window and obligation totals for agency ID 9700.
Overview
For the last 5 years, award number N0002424C2110 is associated with 10 award actions and total obligated funding of 4.9600175 billion dollars. The average action value across the period is 496001750 dollars. This summary reflects the supplied agency ID 9700 and the reported award totals only.
How to use this page
Use this page to review the award-level obligation pattern, action count, and average action value for N0002424C2110. It is intended as a compact reference for procurement analysis within the stated 5-year 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 = 'N0002424C2110'
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 | 4,960,017,500.00 | 4.96 billion | 10 |
Insight
Over the past 5 years, obligations for PIID N0002424C2110 are fully concentrated within the DEPT OF THE NAVY, which accounts for 4.96 billion across 10 awards. This indicates a highly concentrated award profile with no diversification across other agencies in the provided data. The distribution suggests the award activity is primarily tied to a single agency customer.
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 = 'N0002424C2110'
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 |
|---|---|---|---|---|
| ELECTRIC BOAT CORPORATION | 96169 | 4,960,017,500.00 | 4.96 billion | 10 |
Insight
Obligations for PIID N0002424C2110 over the 5-year window are fully concentrated with a single vendor, ELECTRIC BOAT CORPORATION (CAGE 96169). The vendor received 10 awards totaling $4.96 billion, indicating a highly concentrated award pattern with no distribution across additional vendors in the provided data. This level of concentration suggests the award activity is tied to a sole incumbent or specialized source for this action.
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 = 'N0002424C2110'
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 | 4,960,017,500.00 | 4.96 billion | 10 |
Insight
Obligations under PIID N0002424C2110 are fully concentrated in NAICS 336611, Ship Building and Repairing, with 4.96 billion obligated across 10 awards over the 5-year window. This indicates a highly focused procurement profile with no observed diversification across other NAICS categories in the provided data. The award volume suggests repeated procurement activity within the same industrial base rather than broad category spread.
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 = 'N0002424C2110'
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 | 4,960,017,500.00 | 4.96 billion | 10 |
Insight
Obligations under PIID N0002424C2110 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, totaling $4.96 billion across 10 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The award pattern suggests recurring activity in a single ship/landing vessel category rather than a broad spread of procurement requirements.
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 = 'N0002424C2110'
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 | 216,510,000.00 | 216.51 million | 1 |
| 2024 | 1,998,633,000.00 | 2.00 billion | 7 |
| 2025 | 2,744,874,500.00 | 2.74 billion | 2 |
Insight
Obligations are highly concentrated in 2024 and 2025, which account for the vast majority of activity in the 5-year window provided. FY 2023 records a single award at $216.51 million, while FY 2024 rises to 7 awards totaling $2.00 billion and FY 2025 shows 2 awards totaling $2.74 billion. The pattern indicates a sharp increase in both obligated value and award activity after 2023, followed by a smaller number of awards in 2025 with even higher total obligations.
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.