This page summarizes award N0002418C2300 for agency 9700 across the last 10 years. The award shows total obligated amount of 1.62 billion across 235 actions, with an average action value of 6,893,176.84.
Award Number
Award Number 9700 / N0002418C2300 Federal Contract Action Summary (Last 10 Years)
Procurement analysis for award N0002418C2300 under agency 9700 over the last 10 years.
All values reflect the stated 10-year analysis window, with total obligated exact amount of 1619896557.52.
Overview
Award N0002418C2300 is associated with agency 9700 and is analyzed here over the last 10 years. The record shows 235 award actions and total obligated exact dollars of 1619896557.52, which rounds to 1.62 billion. The average action value is 6893176.84, indicating substantial action-level activity across the period.
How to use this page
Use this page to review award-level obligation patterns for PIID N0002418C2300 within agency 9700. The action count and average action value help frame the scale and frequency of modifications or funding actions captured in the dataset. This summary is based only on the provided analysis window and obligation totals.
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 = 'N0002418C2300'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 | 1,619,896,557.52 | 1.62 billion | 234 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for 234 awards and $1.62 billion in obligated value over the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only once and carries no obligated value, indicating a negligible share of total activity. Overall, the award history is dominated by Navy-managed obligations with minimal participation from other agencies in the provided data.
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 = 'N0002418C2300'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 |
|---|---|---|---|---|
| LOCKHEED MARTIN CORPORATION | 38597 | 1,619,896,557.52 | 1.62 billion | 235 |
Insight
LOCKHEED MARTIN CORPORATION accounts for all reported obligations in this 10-year award window for PIID N0002418C2300, with $1.62 billion obligated across 235 awards. This indicates complete vendor concentration, with no distribution across additional suppliers in the provided data. The volume of awards suggests repeated obligation activity under a single vendor relationship rather than a diversified vendor base.
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 = 'N0002418C2300'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 | 1,619,896,557.52 | 1.62 billion | 235 |
Insight
Obligations under this award are fully concentrated in NAICS 336611, Ship Building and Repairing, with $1.62 billion obligated across 235 awards in the 10-year window. This indicates the award’s activity is tightly aligned to shipbuilding and repair work, with no other NAICS represented in the provided data. The volume of awards suggests sustained contracting activity within a single industry category rather than a diversified obligation profile.
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 = 'N0002418C2300'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 | 1,619,896,557.52 | 1.62 billion | 235 |
Insight
Obligations under this award are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, with $1.62 billion across 235 awards recorded over the 10-year window. This indicates a highly focused procurement profile centered on naval platform-related requirements rather than a diversified mix of product/service categories. The volume of awards relative to the obligated amount suggests repeated 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 = 'N0002418C2300'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2017 | 479,509,583.00 | 479.51 million | 1 |
| 2018 | 463,452,168.00 | 463.45 million | 15 |
| 2019 | 500,083,964.00 | 500.08 million | 48 |
| 2020 | 26,454,185.00 | 26.45 million | 39 |
| 2021 | 22,360,819.00 | 22.36 million | 38 |
| 2022 | 5,561,241.00 | 5.56 million | 24 |
| 2023 | 24,869,770.06 | 24.87 million | 22 |
| 2024 | 33,224,469.46 | 33.22 million | 21 |
| 2025 | 64,380,358.00 | 64.38 million | 27 |
Insight
Obligations for PIID N0002418C2300 were highly concentrated in the 2017–2019 period, when annual totals ranged from $463.45 million to $500.08 million and award counts increased from 1 to 48. Beginning in 2020, obligated amounts dropped sharply to the $5.56 million–$33.22 million range through 2024, while annual award counts remained relatively steady at 21–39. In 2025, obligations increased to $64.38 million with 27 awards, indicating a partial rebound from the prior low-obligation period but still far below the 2017–2019 levels.
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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.