Award Number

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

Federal procurement analysis for award number FA820523F0501 at agency ID 9700 over the last 10 years.

This page summarizes award FA820523F0501 for agency ID 9700 using the last 10 years of available activity. The award shows 34 actions with total obligated spending of 2.57 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated exact is 2571558845.12, and the average action value is 75634083.68.

Agency ID
9700
PIID
FA820523F0501
Type
Award
Total Obligated
2.57 billion
2,571,558,845.12
Actions
34
Average Action Value
75,634,083.68

Overview

Award FA820523F0501 is associated with agency ID 9700 and records 34 award actions in the last 10 years. Total obligated spending across the analysis window is 2,571,558,845.12, with an average action value of 75,634,083.68.

How to use this page

Use this page to review the award-level funding profile for FA820523F0501 and compare its action history over time. The figures here are limited to the provided analysis window and reflect obligated amounts only.

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 = 'FA820523F0501'
    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 2,571,558,845.12 2.57 billion 34

Insight

Within the 10-year window for PIID FA820523F0501, obligations are fully concentrated in the DEPT OF THE AIR FORCE, which accounts for $2.57 billion across 34 awards. No other top agency rows are present, indicating a highly concentrated award distribution rather than a diversified interagency pattern. This suggests the award history is driven entirely by a single agency relationship.

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 = 'FA820523F0501'
        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 81755 2,571,558,845.12 2.57 billion 34

Insight

Within the 10-year window for award FA820523F0501 under agency 9700, obligations are fully concentrated in a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 81755). The vendor accounts for $2.57 billion across 34 awards, indicating a sustained and highly concentrated obligation pattern rather than a diversified vendor base.

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 = 'FA820523F0501'
    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 2,571,558,845.12 2.57 billion 34

Insight

Over the 10-year window for award FA820523F0501 under agency 9700, obligations are fully concentrated in NAICS 336411, Aircraft Manufacturing. The single reported NAICS accounts for $2.57 billion across 34 awards, indicating a highly concentrated procurement profile with no observable diversification across other NAICS codes in the provided data. This pattern suggests sustained reliance on aircraft manufacturing as the dominant contract activity 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 = 'FA820523F0501'
    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
J016 MAINT/REPAIR/REBUILD OF EQUIPMENT- AIRCRAFT COMPONENTS AND ACCESSORIES 2,571,558,845.12 2.57 billion 34

Insight

Obligations under PIID FA820523F0501 are entirely concentrated in PSC J016, with $2.57 billion obligated across 34 awards over the 10-year window. This indicates a highly focused expenditure profile in aircraft component and accessory maintenance, repair, and rebuild services. The award activity is distributed across a relatively small number of awards, suggesting repeated procurement within the same service category rather than broad category diversification.

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 = 'FA820523F0501'
    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 52,638,055.89 52.64 million 2
2023 787,176,261.00 787.18 million 10
2024 822,344,148.61 822.34 million 11
2025 909,400,379.62 909.40 million 11

Insight

Obligations for PIID FA820523F0501 increased sharply from 2022 to 2023, rising from $52.64 million across 2 awards to $787.18 million across 10 awards. Funding then remained elevated, with modest growth to $822.34 million in 2024 and $909.40 million in 2025, each at 11 awards. The pattern indicates a pronounced concentration of obligations in the most recent three years, with award activity and dollars both sustaining at a much higher level than in 2022.

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.