Award Number

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

Award number FA862522F3027 records 4 actions over the last 5 years, with $1.87 billion in total obligations for agency ID 9700.

This award page summarizes obligation activity for award number FA862522F3027 within the last 5 years. The record shows 4 award actions and $1,865,607,013 in total obligated value, for an average action value of $466,401,753.25.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar totals are shown as provided for the analysis window and may reflect rounding in the readable figure.

Agency ID
9700
PIID
FA862522F3027
Type
Award
Total Obligated
1.87 billion
1,865,607,013.00
Actions
4
Average Action Value
466,401,753.25

Overview

Award number FA862522F3027 is associated with agency ID 9700 and shows 4 recorded actions in the last 5 years. Total obligations are $1,865,607,013, with an average action value of $466,401,753.25. The page presents the award-level obligation history in a compact format for quick review.

How to use this page

Use this page to review the award’s action count, total obligated amount, and average action value within the selected period. It is useful for comparing award activity across periods or against other award records tied to agency ID 9700. The figures support basic procurement analysis without requiring the full transaction history.

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 = 'FA862522F3027'
    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 1,865,607,013.00 1.87 billion 4

Insight

Over the past 5 years, obligations for PIID FA862522F3027 are fully concentrated under DEPT OF THE AIR FORCE (agency ID 5700). The award record shows 4 awards totaling $1.87 billion, indicating a highly concentrated obligation pattern with all reported funding attributed to a single agency.

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 = 'FA862522F3027'
        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 1,865,607,013.00 1.87 billion 4

Insight

Within the 5-year window, obligations for award FA862522F3027 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 98897). This vendor accounts for $1.87 billion across 4 awards, indicating a highly concentrated obligation pattern with limited vendor distribution for this action.

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 = 'FA862522F3027'
    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 1,865,607,013.00 1.87 billion 4

Insight

Obligations for PIID FA862522F3027 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $1.87 billion across 4 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The limited award count and single-industry concentration suggest the action set is narrowly aligned to aircraft manufacturing requirements.

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 = 'FA862522F3027'
    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 1,865,607,013.00 1.87 billion 4

Insight

Over the 5-year window for award FA862522F3027, obligations are fully concentrated in PSC 1510, Aircraft, Fixed Wing. This PSC accounts for $1.87 billion across 4 awards, indicating a narrow product mix and high spend concentration within the action.

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 = 'FA862522F3027'
    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 4,406,569.00 4.41 million 2
2023 969,280,761.00 969.28 million 1
2024 891,919,683.00 891.92 million 1

Insight

Obligations for PIID FA862522F3027 are highly concentrated in the most recent fiscal years, with 2023 and 2024 accounting for nearly all recorded obligation volume in the 5-year window. FY 2022 shows only $4.41 million across two awards, followed by a sharp increase to $969.28 million in FY 2023 and $891.92 million in FY 2024, each on a single award. This pattern indicates a step-change in funding level rather than a gradual trend, with award activity also becoming more concentrated over time.

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.