This page summarizes procurement activity for award number N0001923F0002 within agency ID 9700 over the last 10 years. The record shows 17 award actions with total obligated value of $2,039,748,721.60 and an average action value of $119,985,218.92.
Award Number
Award Number 9700 / N0001923F0002 Federal Contract Action Summary (Last 10 Years)
FPDS award detail page for award number N0001923F0002 under agency ID 9700, summarizing 17 recorded actions and $2.04 billion obligated over the last 10 years.
Figures reflect the provided analysis window and may differ from other FPDS views depending on filters and update timing.
Overview
The award record for N0001923F0002 shows procurement activity tracked over a 10-year period with 17 actions. Total obligated value across those actions is $2,039,748,721.60, with an average action value of $119,985,218.92. This page is organized to support quick review of the award-level obligation pattern.
How to use this page
Use this page to review the award number, action count, and obligated totals for the selected period. It is useful for comparing this award against other FPDS records under agency ID 9700 or for checking how obligations are distributed across actions. The figures are limited to the provided analysis window and award identifier.
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 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 | 2,039,748,721.60 | 2.04 billion | 15 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 2 |
Insight
Award activity under PIID N0001923F0002 is highly concentrated in the Department of the Navy, which accounts for $2.04 billion across 15 awards. DCMA appears only marginally in the record, with 2 awards and no obligated dollars reported. This distribution indicates that obligated value is concentrated within a single agency, while other agency involvement is limited and primarily administrative in nature.
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 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 | 81755 | 2,039,748,721.60 | 2.04 billion | 17 |
Insight
LOCKHEED MARTIN CORPORATION is the only vendor listed for this award, accounting for 100% of obligated dollars in the 10-year window. The total obligated amount is $2.04 billion across 17 awards, indicating complete vendor concentration for this PIID. This pattern suggests a highly concentrated obligation profile with no observable distribution across additional vendors in the provided data.
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 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 |
|---|---|---|---|---|
| 336411 | AIRCRAFT MANUFACTURING | 2,039,748,721.60 | 2.04 billion | 17 |
Insight
Obligations for this award are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $2.04 billion across 17 awards. This indicates a highly focused procurement profile with no observed diversification across other NAICS codes in the 10-year window provided. The distribution suggests the award activity is centered on a single industrial capability rather than spread across multiple 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 = 'N0001923F0002'
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 |
|---|---|---|---|---|
| K016 | MODIFICATION OF EQUIPMENT- AIRCRAFT COMPONENTS AND ACCESSORIES | 2,039,748,721.60 | 2.04 billion | 17 |
Insight
Obligations for PIID N0001923F0002 are fully concentrated in PSC K016, Modification of Equipment – Aircraft Components and Accessories, over the 10-year window. This PSC accounts for $2.04 billion across 17 awards, indicating repeated funding within a single product/service category rather than a diversified procurement mix. The concentration suggests this award record is dominated by aircraft-related modification activity.
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 10 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 highly concentrated in 2023 and 2024, which together account for the overwhelming share of the 10-year window’s recorded activity for this PIID. Funding increased sharply from 70.60 million across 1 award in 2022 to 1.01 billion across 5 awards in 2023, then remained elevated at 921.66 million across 6 awards in 2024. In 2025, obligated dollars dropped to 36.12 million across 5 awards, indicating a pronounced decline in funding level despite continued award activity.
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.