This page summarizes award FA868224CB001 for Agency ID 9700 across the last 10 years. The record shows 13 award actions with total obligated amount of $5.69 billion.
Award Number
Award Number 9700 / FA868224CB001 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award FA868224CB001 at Agency ID 9700 over the last 10 years.
Dollar figures are based on the provided exact total obligated amount of 5685763042.22 and the readable rounded value of 5.69 billion.
Overview
Award FA868224CB001 has 13 recorded actions in the last 10 years. The total obligated amount is $5,685,763,042.22, with an average action value of $437,366,387.86.
How to use this page
Use this page to review the award-level obligation history tied to PIID FA868224CB001. The figures support quick comparison of total spend and action frequency within the selected 10-year analysis window.
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 = 'FA868224CB001'
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 |
|---|---|---|---|---|
| 5700 | DEPT OF THE AIR FORCE | 5,685,763,042.22 | 5.69 billion | 12 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Obligations on PIID FA868224CB001 are highly concentrated in the Department of the Air Force, which accounts for 5.69 billion across 12 awards. The only other agency listed, DCMA, is represented by a single award with no obligated dollars. Over the 10-year window, activity is therefore overwhelmingly concentrated within one funding agency, with no meaningful obligated-dollar distribution across 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 = 'FA868224CB001'
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 CORP | 04939 | 5,685,763,042.22 | 5.69 billion | 13 |
Insight
LOCKHEED MARTIN CORP is the sole vendor listed in this 10-year view for PIID FA868224CB001 under agency 9700, indicating complete vendor concentration in the available top-vendor slice. The vendor received 13 awards totaling $5.69 billion in obligated funding, which suggests a highly concentrated award distribution with no visible diversification among top vendors. This level of concentration is significant because it implies the award activity for this instrument is dominated by a single contractor over the period reviewed.
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 = 'FA868224CB001'
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 |
|---|---|---|---|---|
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 5,685,763,042.22 | 5.69 billion | 13 |
Insight
Award activity under PIID FA868224CB001 is fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. Over the 10-year window, this category accounts for 13 awards totaling $5.69 billion, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data.
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 = 'FA868224CB001'
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 |
|---|---|---|---|---|
| 1425 | GUIDED MISSILE SYSTEMS, COMPLETE | 5,685,763,042.22 | 5.69 billion | 13 |
Insight
Obligations under PIID FA868224CB001 are entirely concentrated in PSC 1425, Guided Missile Systems, Complete. Over the 10-year window, this PSC accounts for $5.69 billion across 13 awards, indicating a highly concentrated procurement profile with no other PSCs represented in the provided data. This pattern suggests the award is focused on a single materiel category rather than a diversified mix of products or services.
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 = 'FA868224CB001'
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 |
|---|---|---|---|
| 2024 | 2,423,365,223.00 | 2.42 billion | 2 |
| 2025 | 3,262,397,819.22 | 3.26 billion | 11 |
Insight
Obligations for PIID FA868224CB001 increased from $2.42 billion in 2024 across 2 awards to $3.26 billion in 2025 across 11 awards. The 2025 activity is more dispersed by count, but obligations remain concentrated in a small number of awards at the annual level. This indicates a higher volume of award actions in 2025 alongside an increase in total obligated dollars.
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.