This page summarizes award number N0001922C0041 for agency ID 9700 over the last 5 years. It includes total obligated amounts, action count, and average action value to support review of the award record.
Award Number
Award Number 9700 / N0001922C0041 Federal Contract Action Summary (Last 5 Years)
Federal procurement profile for award number N0001922C0041 under agency ID 9700, showing obligation and action history for the last 5 years.
Amounts are based on the provided analysis window and reflect a total obligated value of 1.65 billion across 66 actions.
Overview
Over the last 5 years, award number N0001922C0041 recorded 66 award actions with total obligated funding of 1,648,489,311.06. The average action value was 24,977,110.77, indicating a high-dollar award with repeated activity in the record.
How to use this page
Use this page to review the scale and cadence of obligations tied to award N0001922C0041. The combination of total obligated amount, action count, and average action value provides a compact view of procurement activity for agency ID 9700.
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 = 'N0001922C0041'
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 | 1,648,489,311.06 | 1.65 billion | 65 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Obligations on PIID N0001922C0041 are overwhelmingly concentrated with the Department of the Navy, which accounts for $1.65 billion across 65 awards in the 5-year window. DCMA appears only once and carries no obligated dollars, indicating minimal financial activity outside the Navy. Overall, the obligation profile is highly concentrated with one agency driving nearly all funded action.
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 = 'N0001922C0041'
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 | 1,648,489,311.06 | 1.65 billion | 66 |
Insight
Over the 5-year window, obligations for award N0001922C0041 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 81755). This vendor received 66 awards totaling $1.65 billion, indicating complete vendor concentration for the period reviewed. No distribution across additional vendors is reflected in the provided data, so spend is not diversified within this award history.
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 = 'N0001922C0041'
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 |
|---|---|---|---|---|
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 1,648,489,311.06 | 1.65 billion | 66 |
Insight
Within the 5-year window, obligations for award N0001922C0041 are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This category accounts for $1.65 billion across 66 awards, indicating a strong and sustained reliance on a single R&D industrial classification. No other NAICS codes are present in the provided rows, so there is no observable diversification within this section.
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 = 'N0001922C0041'
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 |
|---|---|---|---|---|
| AC15 | NATIONAL DEFENSE R&D SVCS; DEPARTMENT OF DEFENSE - MILITARY; R&D FACILITIES & MAJ EQUIP | 1,648,489,311.06 | 1.65 billion | 66 |
Insight
Across the 5-year window, obligations under PIID N0001922C0041 are fully concentrated in PSC AC15, totaling $1.65 billion across 66 awards. This indicates a single dominant product/service classification with no diversification across other PSCs in the provided data. The award activity is therefore highly concentrated in defense R&D services and related facilities/major equipment.
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 = 'N0001922C0041'
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 | 284,310,685.60 | 284.31 million | 9 |
| 2023 | 400,076,579.62 | 400.08 million | 16 |
| 2024 | 527,698,616.77 | 527.70 million | 16 |
| 2025 | 436,403,429.07 | 436.40 million | 25 |
Insight
Obligations under PIID N0001922C0041 increased from 284.31 million across 9 awards in 2022 to 400.08 million across 16 awards in 2023, then rose again to 527.70 million across 16 awards in 2024. In 2025, obligations declined to 436.40 million while award count increased to 25, indicating a broader distribution of obligations across more actions. Overall, the series shows rising funding concentration through 2024 followed by a more dispersed award pattern in 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.