This page summarizes award number N0002417C2100 for agency ID 9700 over the last full year. The award shows 90 recorded actions and total obligations of 8,657,541,690, with an average action value of 96,194,907.67.
Award Number
Award Number 9700 / N0002417C2100 Federal Contract Action Summary (Last Year)
Award number N0002417C2100 for agency 9700 with 90 actions and 8.66 billion obligated in the last full year.
Totals reflect the analysis window provided and the readable obligation amount of 8.66 billion.
Overview
Within the last full year, award N0002417C2100 recorded 90 actions and 8,657,541,690 in total obligated value. The average action value was 96,194,907.67, indicating a high-dollar award profile across the period. This page is limited to the supplied award identifier, agency ID, and obligation totals.
How to use this page
Use this page to review the award-level summary for N0002417C2100 under agency 9700 and to compare the total obligated value with the number of actions. The figures provided support a quick view of volume and average action size for the selected analysis window. No additional contract scope, vendor, or program details are included in the supplied inputs.
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 = 'N0002417C2100'
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 | 8,657,541,690.00 | 8.66 billion | 90 |
Insight
Within the 1-year window for award PIID N0002417C2100, obligations are fully concentrated in a single top agency: DEPT OF THE NAVY (agency ID 1700). The Navy accounts for $8.66 billion across 90 awards, indicating a highly concentrated funding profile with no other agencies appearing in the provided rows. This suggests the award activity is dominated by one agency rather than distributed across multiple departments.
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 = 'N0002417C2100'
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 |
|---|---|---|---|---|
| ELECTRIC BOAT CORPORATION | 96169 | 8,657,541,690.00 | 8.66 billion | 90 |
Insight
Obligations for PIID N0002417C2100 over the 1-year window are fully concentrated with a single vendor, ELECTRIC BOAT CORPORATION (CAGE 96169). The vendor accounts for $8.66 billion across 90 awards, indicating a highly concentrated award pattern with no diversification among top vendors in the provided data. This distribution suggests the contract activity is dominated by one supplier rather than spread across multiple vendors.
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 = 'N0002417C2100'
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 | 8,657,541,690.00 | 8.66 billion | 90 |
Insight
Obligations under this award are fully concentrated in NAICS 336611, Ship Building and Repairing, totaling $8.66 billion across 90 awards in the 1-year window. This indicates the action is overwhelmingly aligned with ship construction and repair work, with no evidence of diversification into other NAICS categories in the provided data. The award count suggests repeated activity within the same industrial classification rather than broad distribution across sectors.
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 = 'N0002417C2100'
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 | 8,657,541,690.00 | 8.66 billion | 90 |
Insight
Obligations under this award are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, totaling $8.66 billion across 90 awards in the 1-year window. This indicates the activity is narrowly focused on naval ship-related procurement rather than a diversified mix of products or services. The volume of awards alongside the high obligated amount suggests sustained contracting activity within a single PSC 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 = 'N0002417C2100'
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 | 8,657,541,690.00 | 8.66 billion | 90 |
Insight
For the 1-year window, obligations are concentrated entirely in FY 2025, with $8.66 billion obligated across 90 awards. This indicates a high level of activity in a single fiscal year, with no multi-year distribution visible in the provided data. The pattern suggests the award’s recent funding profile is heavily weighted to FY 2025.
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.