This page presents the federal procurement record for award number N0002419C2210 under Agency ID 9700. In the last full year, the award shows 18 actions and $613.58 million in total obligated dollars.
Award Number
Award Number 9700 / N0002419C2210 Federal Contract Action Summary (Last Year)
Analyst summary of award number N0002419C2210 for Agency ID 9700, based on the last full year of obligations and award actions.
Values reflect the provided analysis window and may differ from other reporting periods or data extracts.
Overview
For the last full year, award number N0002419C2210 recorded 18 award actions and $613,575,095 in total obligated dollars. The average action value was $34,087,505.28, indicating a relatively large-dollar award record across the analysis window. This page is limited to the supplied award, agency, and obligation data.
How to use this page
Use this page to review the award-level obligation total, action count, and average action value for Agency ID 9700. It is useful for quick screening, comparison with other awards, and tracking activity within the same reporting 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 = 'N0002419C2210'
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 | 613,575,095.00 | 613.58 million | 18 |
Insight
Within the 1-year window for award PIID N0002419C2210, all reported obligation is concentrated in a single top agency: the Department of the Navy. The Navy accounts for $613.58 million across 18 awards, indicating a highly concentrated funding pattern with no other agencies represented in the provided rows. This suggests the award activity is agency-specific rather than distributed across multiple federal buyers.
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 = 'N0002419C2210'
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 |
|---|---|---|---|---|
| BOLLINGER MISSISSIPPI SHIPBUILDING, LLC | 3BJ86 | 613,575,095.00 | 613.58 million | 18 |
Insight
Obligations for this award are fully concentrated with BOLLINGER MISSISSIPPI SHIPBUILDING, LLC (CAGE 3BJ86), which accounts for the entire reported total of $613.58 million across 18 actions in the 1-year window. This indicates a highly concentrated vendor distribution with no diversification among top vendors for the period reviewed. The award activity reflects repeated funding to a single contractor rather than spread across multiple suppliers.
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 = 'N0002419C2210'
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 | 613,575,095.00 | 613.58 million | 18 |
Insight
Obligations for PIID N0002419C2210 in the 1-year window are fully concentrated in NAICS 336611, Ship Building and Repairing, with $613.58 million across 18 awards. This indicates a highly focused procurement profile with no visible NAICS diversification in the provided data. The distribution suggests the award activity is concentrated in a single shipbuilding-related industrial base, consistent with a specialized contract vehicle or program scope.
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 = 'N0002419C2210'
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 |
|---|---|---|---|---|
| 1925 | SPECIAL SERVICE VESSELS | 613,575,095.00 | 613.58 million | 18 |
Insight
Within the 1-year window for award N0002419C2210 under agency 9700, obligations are fully concentrated in PSC 1925, Special Service Vessels, with $613.58 million across 18 awards. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The activity appears programmatically concentrated rather than broadly distributed.
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 = 'N0002419C2210'
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 | 613,575,095.00 | 613.58 million | 18 |
Insight
For PIID N0002419C2210 within the 1-year window, obligations in 2025 totaled $613.58 million across 18 awards. This indicates a highly concentrated funding profile, with substantial obligated volume accumulated in a relatively small number of actions. The available data supports observation of elevated annual activity in 2025, but no year-over-year trend can be assessed from the single provided row.
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.