This page summarizes federal procurement activity for award number FA862514C6450 within agency 9700 across the last 10 years. The record includes 66 award actions and total obligations of $3,393,929,694.05.
Award Number
Award Number 9700 / FA862514C6450 Federal Contract Action Summary (Last 10 Years)
Award number FA862514C6450 for agency 9700 shows 66 recorded award actions over the last 10 years, with $3.39 billion obligated in total.
Dollar figures are based on the provided total obligated exact value and the readable rounded amount.
Overview
The award number FA862514C6450 is associated with 66 recorded award actions in the last 10 years. Total obligations for the period are $3,393,929,694.05, with an average action value of $51,423,177.18.
How to use this page
Use this page to review the scale and frequency of recorded award activity tied to FA862514C6450. The figures support quick screening of obligation volume and action count for procurement analysis.
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 = 'FA862514C6450'
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 | 3,393,929,694.05 | 3.39 billion | 52 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 14 |
Insight
Award activity under PIID FA862514C6450 is highly concentrated in the Department of the Air Force, which accounts for 3.39 billion obligated across 52 awards over the 10-year window. The Defense Contract Management Agency (DCMA) appears as a secondary agency with 14 awards but no obligated dollars, indicating administrative or oversight involvement rather than funding concentration. Overall, obligations are overwhelmingly centralized with the Air Force, with limited distribution to DCMA.
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 = 'FA862514C6450'
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 | 2,858,843,476.74 | 2.86 billion | 19 | |
| LOCKHEED MARTIN CORPORATION | 98897 | 535,086,217.31 | 535.09 million | 47 |
Insight
Award activity under PIID FA862514C6450 is highly concentrated with LOCKHEED MARTIN CORPORATION, which accounts for the vast majority of obligated dollars in the provided rows. The unnamed entry for LOCKHEED MARTIN CORPORATION totals $2.86 billion across 19 awards, while CAGE 98897 records an additional $535.09 million across 47 awards. This distribution indicates that obligation value is concentrated in fewer, higher-dollar awards, while a larger number of awards associated with CAGE 98897 represent a materially smaller share of total dollars.
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 = 'FA862514C6450'
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 | 3,393,929,694.05 | 3.39 billion | 66 |
Insight
Obligations under PIID FA862514C6450 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $3.39 billion across 66 awards over the 10-year window. This indicates a highly focused procurement profile centered on aircraft manufacturing activity, with no other NAICS codes represented in the provided data. The award count suggests repeated procurement within a single industrial base rather than a diversified distribution across multiple NAICS categories.
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 = 'FA862514C6450'
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 |
|---|---|---|---|---|
| 1510 | AIRCRAFT, FIXED WING | 3,393,929,694.05 | 3.39 billion | 66 |
Insight
Obligations under PIID FA862514C6450 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with 66 awards totaling $3.39 billion over the 10-year window. This indicates a highly focused procurement profile with no visible distribution across other PSCs in the provided data. The concentration suggests the award activity is dominated by fixed-wing aircraft acquisitions rather than a diversified mix of product 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 = 'FA862514C6450'
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 |
|---|---|---|---|
| 2016 | 2,858,843,476.74 | 2.86 billion | 18 |
| 2017 | 65,001,747.97 | 65.00 million | 12 |
| 2018 | 455,064,906.79 | 455.06 million | 13 |
| 2019 | 20,145,990.96 | 20.15 million | 8 |
| 2020 | 2,104,083.54 | 2.10 million | 7 |
| 2021 | 5,976,284.68 | 5.98 million | 3 |
| 2022 | -8,983,278.28 | -8.98 million | 1 |
| 2023 | -802,163.67 | -802.16 thousand | 1 |
| 2024 | -3,207,360.50 | -3.21 million | 2 |
| 2025 | -213,994.18 | -213.99 thousand | 1 |
Insight
Obligations for PIID FA862514C6450 are highly concentrated in 2016, which accounts for 2.86 billion across 18 awards and materially exceeds every other year in the 10-year window. After 2016, obligated amounts dropped sharply to a much lower range, with a secondary high point in 2018 at 455.06 million and then much smaller annual totals from 2019 through 2021. From 2022 through 2025, annual obligations are negative and award counts are minimal, indicating net deobligations or downward adjustments in recent years rather than new obligation growth.
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.