Award Number

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

FPDS award record for award number FA862522F3027 under agency ID 9700, showing obligated amounts and action activity over the last 10 years.

This page summarizes federal procurement activity for award number FA862522F3027 in agency ID 9700. The record shows 4 award actions and total obligated funding of 1.87 billion over the last 10 years.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts are based on the provided analysis window and the exact total obligated value of 1,865,607,013.

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 tied to agency ID 9700 and shows 4 recorded actions within the last 10 years. Total obligated funding is 1,865,607,013, with an average action value of 466,401,753.25. These figures provide a concise view of the award’s activity and funding scale.

How to use this page

Use this page to review the award’s obligation level and the number of actions associated with it. The values support basic procurement analysis, record comparison, and identification of activity over the selected 10-year period.

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

Insight

Within the 10-year window for award FA862522F3027, obligations are fully concentrated in a single top agency: the Department of the Air Force (agency ID 5700). This agency accounts for $1.87 billion across 4 awards, indicating a narrow distribution of obligated funding rather than broad interagency spread. The concentration suggests this award activity is closely tied to a single customer 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 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 98897 1,865,607,013.00 1.87 billion 4

Insight

Within the 10-year window for award PIID FA862522F3027 under agency 9700, obligations are fully concentrated with a single vendor: LOCKHEED MARTIN CORPORATION (CAGE 98897). The vendor accounts for $1.87 billion across 4 awards, indicating a highly concentrated award distribution with no other vendors represented in this result set.

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

Insight

Obligations for PIID FA862522F3027 over the 10-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. This category accounts for 1.87 billion across 4 awards, indicating a narrow industrial focus and limited NAICS diversification for this award. The distribution suggests the action is centered on a single manufacturing sector rather than spread across multiple industry classifications.

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

Insight

Obligations for PIID FA862522F3027 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, totaling $1.87 billion across 4 awards over the 10-year window. This indicates a narrow procurement profile with no diversification across other PSCs in the provided data. The concentration suggests the award activity is tightly focused on a single aircraft-related product category.

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 10 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 years, rising from 4.41 million across 2 awards in 2022 to 969.28 million in 2023 and 891.92 million in 2024. The 10-year window provided reflects a sharp step-up in funding after 2022, with nearly all obligation value occurring in 2023–2024. Award activity is limited, with only one award in each of 2023 and 2024, indicating that the obligation profile is driven by a small number of actions.

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.