This page summarizes the federal award identified by PIID N0001923F0002 for agency ID 9700. Over the last 5 years, the award recorded 17 actions and $2,039,748,721.60 in total obligations, with an average action value of $119,985,218.92.
Award Number
Award Number 9700 / N0001923F0002 Federal Contract Action Summary (Last 5 Years)
FPDS award page for award number N0001923F0002 under agency ID 9700, covering obligations and action activity over the last 5 years.
Obligation totals are shown as reported for the last 5 years and may differ from rounded-readable values due to precision.
Overview
This award record shows 17 award actions across the last 5 years. Total obligated amount is $2,039,748,721.60, and the average action value is $119,985,218.92. The page is organized to support quick review of award activity and funding level for PIID N0001923F0002.
How to use this page
Use this page to review the award's obligation history, action count, and average action value in one place. It is useful for tracking award-level activity over time and comparing reported obligations against other FPDS award records.
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 = 'N0001923F0002'
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 | 2,039,748,721.60 | 2.04 billion | 15 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 2 |
Insight
Obligations under PIID N0001923F0002 are highly concentrated in the DEPT OF THE NAVY, which accounts for $2.04 billion across 15 awards over the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only marginally, with 2 awards and no obligated dollars recorded. This distribution indicates that funding activity is effectively centralized within the Navy, with DCMA participation limited to non-obligated awards.
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 = 'N0001923F0002'
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 |
|---|---|---|---|---|
| LOCKHEED MARTIN CORPORATION | 81755 | 2,039,748,721.60 | 2.04 billion | 17 |
Insight
Within the 5-year window for award PIID N0001923F0002, obligated dollars are fully concentrated with a single vendor: LOCKHEED MARTIN CORPORATION (CAGE 81755). This vendor received $2.04 billion across 17 awards, indicating a highly concentrated vendor distribution with no competing vendors represented in the provided data. The award pattern suggests sustained reliance on one contractor for this requirement.
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 = 'N0001923F0002'
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 |
|---|---|---|---|---|
| 336411 | AIRCRAFT MANUFACTURING | 2,039,748,721.60 | 2.04 billion | 17 |
Insight
Over the 5-year window, obligations for PIID N0001923F0002 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $2.04 billion obligated across 17 awards. This indicates a highly focused award profile with no diversification across other NAICS codes in the provided data. The concentration suggests the requirement is tied primarily to aircraft manufacturing activities within Agency ID 9700.
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 = 'N0001923F0002'
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 |
|---|---|---|---|---|
| K016 | MODIFICATION OF EQUIPMENT- AIRCRAFT COMPONENTS AND ACCESSORIES | 2,039,748,721.60 | 2.04 billion | 17 |
Insight
Obligations under PIID N0001923F0002 are fully concentrated in PSC K016, Modification of Equipment - Aircraft Components and Accessories, with $2.04 billion obligated across 17 awards over the 5-year window. This indicates a highly focused procurement profile with no observed PSC diversification in the provided data. The concentration suggests the award is tied to a single equipment-modification requirement rather than a broader mix of supply or service categories.
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 = 'N0001923F0002'
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 |
|---|---|---|---|
| 2022 | 70,602,602.00 | 70.60 million | 1 |
| 2023 | 1,011,368,470.00 | 1.01 billion | 5 |
| 2024 | 921,659,550.00 | 921.66 million | 6 |
| 2025 | 36,118,099.60 | 36.12 million | 5 |
Insight
Obligations are heavily concentrated in 2023 and 2024, which together account for the vast majority of the 5-year period shown. 2023 peaks at $1.01 billion across 5 awards, followed by a slight decline in 2024 to $921.66 million across 6 awards. Activity drops sharply in 2025 to $36.12 million across 5 awards, while 2022 is comparatively small at $70.60 million from a single award.
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.