This page summarizes award number N0002413C2305 for Agency ID 9700 over the last 5 years. The award shows total obligations of $439.21 million across 291 actions, with an average action value of $1.51 million.
Award Number
Award Number 9700 / N0002413C2305 Federal Contract Action Summary (Last 5 Years)
Federal procurement analysis for award number N0002413C2305 under Agency ID 9700, showing obligation and action activity over the last 5 years.
Values shown use the provided analysis window and may differ slightly between readable and exact totals due to formatting.
Overview
Award number N0002413C2305 is associated with Agency ID 9700 and records $439,212,403.56 in total obligated value over the last 5 years. The award includes 291 actions, with an average action value of $1,509,320.97. The readable total for the same period is $439.21 million.
How to use this page
Use this page to review award-level activity, obligation totals, and action volume for N0002413C2305 within the selected 5-year window. The figures provide a compact view of how much funding was obligated and how frequently the award was modified or acted on during that period.
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 = 'N0002413C2305'
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 | 439,212,403.56 | 439.21 million | 291 |
Insight
Obligations for PIID N0002413C2305 are fully concentrated in a single agency over the 5-year window. DEPT OF THE NAVY accounts for $439.21 million across 291 awards, indicating that activity is entirely concentrated within one funding source rather than distributed across multiple agencies.
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 = 'N0002413C2305'
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 |
|---|---|---|---|---|
| BATH IRON WORKS CORPORATION | 70876 | 439,212,403.56 | 439.21 million | 291 |
Insight
Within the 5-year window for award N0002413C2305, BATH IRON WORKS CORPORATION (CAGE 70876) is the sole top vendor and has received $439.21 million across 291 awards. This indicates complete vendor concentration in the reported top-vendor segment, with all obligated value attributable to a single contractor. The volume of awards suggests repeated funding activity rather than a one-time obligation pattern.
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 = 'N0002413C2305'
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 | 439,212,403.56 | 439.21 million | 291 |
Insight
Obligations for PIID N0002413C2305 are fully concentrated in NAICS 336611, Ship Building and Repairing, with $439.21 million obligated across 291 awards in the 5-year window. This indicates the award activity is highly specialized and centered on ship construction and repair work, with no diversification across other NAICS codes in the provided data. The volume of awards suggests repeated transactional activity within a single industrial sector rather than a broad procurement mix.
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 = 'N0002413C2305'
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 | 439,212,403.56 | 439.21 million | 291 |
Insight
Over the 5-year window, obligations for award N0002413C2305 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels. The award accounts for $439.21 million across 291 actions, indicating a highly concentrated procurement profile with no other PSCs reflected in this section. This concentration suggests the award’s obligated funding is consistently tied to a single product/service category.
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 = 'N0002413C2305'
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 | 34,696,753.00 | 34.70 million | 62 |
| 2022 | 22,819,732.00 | 22.82 million | 57 |
| 2023 | 54,807,450.00 | 54.81 million | 59 |
| 2024 | 191,400,388.00 | 191.40 million | 56 |
| 2025 | 135,488,080.56 | 135.49 million | 57 |
Insight
Obligations for PIID N0002413C2305 were relatively steady from 2021 through 2023, ranging from $22.82 million to $54.81 million across 57 to 62 awards annually. A pronounced increase occurred in 2024, when obligated value rose to $191.40 million while award count remained at 56, indicating a much higher concentration of dollars per award. In 2025, obligations declined to $135.49 million but remained well above the 2021–2023 level, with award count holding near prior-year levels at 57.
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.