Award Number

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

FPDS summary for award number FA820523F0501 under agency ID 9700, covering the last 5 years of reported actions and obligations.

This page presents procurement activity for award FA820523F0501 over the last 5 years. The record shows 34 award actions with total obligated funding of 2.57 billion dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated amount is 2,571,558,845.12, and the average action value is 75,634,083.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

The award number FA820523F0501 is associated with agency ID 9700 in the FPDS data available for the last 5 years. Across 34 actions, the award accumulated 2,571,558,845.12 in total obligated funding, with an average action value of 75,634,083.68.

How to use this page

Use this page to review how obligated amounts and action volume are distributed for award FA820523F0501 over the selected period. The figures support basic trend review, comparison across awards, and follow-up analysis of reported procurement activity.

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

Insight

Over the 5-year window, obligations for PIID FA820523F0501 are fully concentrated in one top agency: the Department of the Air Force. It accounts for $2.57 billion across 34 awards, indicating a highly concentrated award profile with no visible distribution across other agencies in the provided data. This suggests the procurement activity under this PIID is primarily Air Force-driven.

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

Insight

Over the 5-year window, obligations for PIID FA820523F0501 are fully concentrated with a single vendor, Lockheed Martin Corporation (CAGE 81755). The vendor received 34 awards totaling $2.57 billion, indicating complete spend concentration in this award set and no diversification across suppliers in the provided rows.

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

Insight

The award’s obligations over the past 5 years are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $2.57 billion across 34 awards. This indicates a highly focused procurement profile, with no evidence in the provided rows of meaningful distribution across other NAICS codes. The average obligation per award is substantial, consistent with large-scale aircraft procurement activity.

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 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
J016 MAINT/REPAIR/REBUILD OF EQUIPMENT- AIRCRAFT COMPONENTS AND ACCESSORIES 2,571,558,845.12 2.57 billion 34

Insight

Obligations for PIID FA820523F0501 are fully concentrated in PSC J016, Maintenance/Repair/Rebuild of Equipment-Aircraft Components and Accessories, with $2.57 billion obligated across 34 awards over the 5-year window. This indicates a highly focused spend profile with no diversification across other PSCs in the provided data. The award activity is concentrated in a single aircraft-maintenance-related category, suggesting a sustained requirement in that functional area.

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 5 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 under PIID FA820523F0501 increased sharply from 52.64 million in 2022 to 787.18 million in 2023, then continued rising through 2024 and 2025 to 822.34 million and 909.40 million, respectively. Award count also expanded from 2 in 2022 to 10 in 2023 and remained at 11 in both 2024 and 2025, indicating a sustained higher-volume award pattern after 2022. The activity is concentrated in the later years of the 5-year window, with most obligated dollars occurring in 2023–2025.

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.