This page summarizes award number N0002419C2235 for agency ID 9700 over the last full year. The award recorded 21 actions and $15.45 million in total obligated amount.
Award Number
Award Number 9700 / N0002419C2235 Federal Contract Action Summary (Last Year)
Federal procurement summary for award number N0002419C2235 under agency ID 9700, showing last full year obligations and action activity.
Totals reflect the exact obligated amount of 15,445,106 and an average action value of 735,481.24 across 21 actions.
Overview
Award number N0002419C2235 is associated with agency ID 9700 and shows activity during the last full year. The award had 21 recorded actions and a total obligated amount of 15,445,106. The average obligated value per action was 735,481.24.
How to use this page
Use this page to review the award-level obligation total, action count, and average action value for the selected period. It is a concise reference for tracking procurement activity tied to award number N0002419C2235.
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 = 'N0002419C2235'
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 | 15,445,106.00 | 15.45 million | 21 |
Insight
For PIID N0002419C2235 over the 1-year window, all reported obligation is concentrated in one agency: the Department of the Navy. The Navy accounts for $15.45 million across 21 awards, indicating a fully concentrated award profile with no observed distribution across other agencies in the provided rows. This suggests the award activity for this PIID is entirely Navy-specific in the current data window.
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 = 'N0002419C2235'
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 |
|---|---|---|---|---|
| NATIONAL STEEL AND SHIPBUILDING COMPANY | 81220 | 15,445,106.00 | 15.45 million | 21 |
Insight
Obligations for PIID N0002419C2235 over the 1-year window are fully concentrated with a single vendor, NATIONAL STEEL AND SHIPBUILDING COMPANY (CAGE 81220). This vendor received 21 awards totaling $15.45 million, indicating all reported obligation activity in this section is concentrated with one supplier rather than distributed across multiple vendors. This pattern suggests a narrow vendor base for the award during the period.
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 = 'N0002419C2235'
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 | 15,445,106.00 | 15.45 million | 21 |
Insight
For award PIID N0002419C2235 over the last 1 year, obligations are fully concentrated in NAICS 336611, Ship Building and Repairing. This NAICS accounts for $15.45 million across 21 awards, indicating a narrow industrial focus with all recorded obligation activity tied to a single shipbuilding-related category. The distribution suggests the award portfolio for this period is highly specialized rather than diversified across multiple NAICS codes.
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 = 'N0002419C2235'
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 |
|---|---|---|---|---|
| 1905 | COMBAT SHIPS AND LANDING VESSELS | 15,445,106.00 | 15.45 million | 21 |
Insight
For award N0002419C2235 over the past 1 year, obligations are concentrated entirely in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for $15.45 million across 21 awards, indicating a focused procurement pattern with no other PSCs represented in the provided results. The distribution suggests this award activity is narrowly tied to naval vessel-related 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 = 'N0002419C2235'
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 | 15,445,106.00 | 15.45 million | 21 |
Insight
For PIID N0002419C2235 within Agency 9700, the 1-year annual trend is concentrated entirely in FY2025, with $15.45 million obligated across 21 awards. This indicates all observed obligation activity in the window occurred in a single fiscal year, with an average of roughly $0.74 million per award. No multi-year distribution or directional trend can be assessed from the provided data.
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.