Award Number

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

Procurement award record for award number FA862514C6450 under agency ID 9700, showing last full year obligation activity.

This page summarizes the award-level procurement activity for PIID FA862514C6450 during the last full year. The record shows one action with a total obligated amount of -213.99 thousand, or -213,994.18 in exact terms.

Generated at 03/20/2026

Analysis period: Last full year

Values reflect the provided analysis window and may include deobligation or negative funding adjustments.

Agency ID
9700
PIID
FA862514C6450
Type
Award
Total Obligated
-213.99 thousand
-213,994.18
Actions
1
Average Action Value
-213,994.18

Overview

The award number FA862514C6450 is associated with agency ID 9700 and shows activity in the last full year. Across one recorded action, the total obligated amount is -213,994.18, with an average action value of -213,994.18.

How to use this page

Use this record to review award-level obligation activity for FA862514C6450 within the selected time window. The negative obligation value should be interpreted as a reduction or adjustment rather than new positive funding.

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 1 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 -213,994.18 -213.99 thousand 1

Insight

Over the past year, the award activity represented here is fully concentrated in one agency: the Department of the Air Force. That single agency account is associated with one award and a net obligated amount of -$213,994.18, indicating a negative obligation adjustment rather than positive funding growth. No distribution across additional agencies is evident in the provided rows.

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 1 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 -213,994.18 -213.99 thousand 1

Insight

Within the 1-year window for PIID FA862514C6450 under agency 9700, obligated dollars in this section are fully concentrated with a single vendor: LOCKHEED MARTIN CORPORATION (CAGE 98897). The vendor’s sole award is associated with a net de-obligation of $213,994.18, indicating negative obligation activity rather than new funding. With only one vendor and one award represented, there is no evidence of distribution across multiple contractors in this period.

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 1 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 -213,994.18 -213.99 thousand 1

Insight

All reported obligations for this award in the 1-year window are concentrated in NAICS 336411, Aircraft Manufacturing. The category reflects a single award record with negative obligations totaling $213.99 thousand, indicating a downward adjustment rather than new positive funding. Because only one NAICS code is present, there is no observable distribution across multiple industry classifications for this award.

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 1 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 -213,994.18 -213.99 thousand 1

Insight

Obligations for this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with one reported action in the 1-year window. The recorded total obligated amount is negative $213,994.18, indicating a net deobligation or downward funding adjustment rather than new obligation. With only a single PSC represented, there is no meaningful internal distribution across product service codes for this period.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 -213,994.18 -213.99 thousand 1

Insight

In the 1-year window, FY 2025 is the only year with recorded activity for award FA862514C6450 under agency 9700. Obligations are fully concentrated in a single award action, with one transaction totaling -$213.99 thousand. The negative obligation indicates a net deobligation or downward adjustment rather than positive funding growth, so the annual pattern reflects isolated, one-time modification 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.