Award Number

Award Number 9700 / FA862514C6450 Federal Contract Action Summary (Last 5 Years)

Award number FA862514C6450 for agency 9700 shows obligated activity over the last 5 years.

This page summarizes award number FA862514C6450, identified under agency ID 9700, for the last 5 years. The award has 8 actions and total obligated value of -$7.23 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures reflect the provided readable and exact obligated totals, with a calculated average action value of -$903,813.99.

Agency ID
9700
PIID
FA862514C6450
Type
Award
Total Obligated
-7.23 million
-7,230,511.95
Actions
8
Average Action Value
-903,813.99

Overview

In the last 5 years, award number FA862514C6450 recorded 8 award actions and a total obligated amount of -$7,230,511.95. The average action value across the period was -$903,813.99. These figures provide a concise view of the award's documented obligated activity.

How to use this page

Use this page to review the award-level obligation history associated with PIID FA862514C6450. The summary is limited to the supplied analysis window and obligation totals, and it does not add contract details beyond the provided data.

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 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
5700 DEPT OF THE AIR FORCE -7,230,511.95 -7.23 million 8

Insight

Over the 5-year window, obligations for PIID FA862514C6450 are concentrated entirely within one agency: the Department of the Air Force (agency 5700). This agency accounts for 8 awards totaling -$7.23 million in obligated value. The negative total indicates net deobligations or downward adjustments over the period, suggesting a reduction in previously obligated funding rather than new net spend.

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 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 98897 -7,230,511.95 -7.23 million 8

Insight

Over the 5-year window for award FA862514C6450, obligations are concentrated entirely with LOCKHEED MARTIN CORPORATION (CAGE 98897), which accounts for all reported activity in this section. The vendor received 8 awards totaling -$7.23 million in obligated value, indicating a net deobligation position rather than positive funding. This single-vendor pattern reflects highly concentrated award activity with no 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 = 'FA862514C6450'
    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 -7,230,511.95 -7.23 million 8

Insight

Obligations for PIID FA862514C6450 over the 5-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $7.23 million in net obligations across 8 awards. This indicates a single-industry procurement profile with no diversification across other NAICS codes in the provided data. The negative total obligated value suggests net deobligations or downward adjustments over the period.

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 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
1510 AIRCRAFT, FIXED WING -7,230,511.95 -7.23 million 8

Insight

Obligations in this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with -$7.23 million across 8 awards in the 5-year window. This indicates a narrow product/service mix and suggests the award activity is focused entirely on fixed-wing aircraft procurement or related adjustments. The negative obligated total may reflect deobligations or funding corrections rather than new spending.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 were concentrated in 2021, with 3 awards totaling $5.98 million, followed by annual negative obligations in each year from 2022 through 2025. The largest deobligation occurred in 2022 at -$8.98 million, with smaller negative totals in 2023, 2024, and 2025. Award activity was sparse over the period, with only 1 to 2 awards per year after 2021, indicating limited transaction frequency and a reversal of prior-year funding.

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.