Award Number

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

Federal procurement award page for award number FA820518F0001 under agency ID 9700, covering activity in the last 10 years.

This page summarizes the award FA820518F0001 and its recorded obligation history over the last 10 years. The award shows 66 actions and total obligated funding of 3.67 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from other extracts if reporting dates or filters change.

Agency ID
9700
PIID
FA820518F0001
Type
Award
Total Obligated
3.67 billion
3,667,251,155.64
Actions
66
Average Action Value
55,564,411.45

Overview

Award FA820518F0001 has 66 recorded actions in the last 10 years, with total obligated funding of 3,667,251,155.64. The average action value is 55,564,411.45, indicating a large award with repeated recorded adjustments or obligations over time.

How to use this page

Use this page to review the award-level obligation trend for FA820518F0001 and to compare its recorded activity against other awards in agency ID 9700. The figures support basic contract analysis, including total obligation, action frequency, and average action value.

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 = 'FA820518F0001'
    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 3,667,251,155.64 3.67 billion 66

Insight

Obligations for PIID FA820518F0001 are fully concentrated under the Department of the Air Force, which accounts for 3.67 billion across 66 awards in the 10-year window. This indicates a highly concentrated award pattern with no other agencies represented in the provided rows. The distribution suggests the award activity is driven entirely by a single agency relationship rather than a broad interagency spread.

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 = 'FA820518F0001'
        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 3,667,251,155.64 3.67 billion 66

Insight

Over the 10-year window for PIID FA820518F0001 under agency 9700, obligations are fully concentrated with a single vendor. LOCKHEED MARTIN CORPORATION (CAGE 81755) accounts for 100% of reported obligations, totaling $3.67 billion across 66 awards. This indicates a highly concentrated vendor base with no diversification reflected in the provided data.

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 = 'FA820518F0001'
    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 3,667,251,155.64 3.67 billion 66

Insight

Obligations for award FA820518F0001 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $3.67 billion obligated across 66 awards in the 10-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The award activity reflects sustained reliance on a single industry category rather than a broad vendor or sector distribution.

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 = 'FA820518F0001'
    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 3,667,251,155.64 3.67 billion 66

Insight

Award FA820518F0001 is fully concentrated in PSC J016, with $3.67 billion obligated across 66 awards over the 10-year window. This indicates a highly focused spend profile centered on aircraft component maintenance, repair, and rebuild work. The distribution shows no diversification across other PSCs in the provided data, suggesting this category is the dominant procurement activity for the award.

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 = 'FA820518F0001'
    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
2017 68,146,440.48 68.15 million 1
2018 1,192,781,605.32 1.19 billion 14
2019 406,741,172.65 406.74 million 10
2020 792,099,662.13 792.10 million 13
2021 727,073,938.50 727.07 million 10
2022 518,244,467.81 518.24 million 6
2023 -24,654,848.48 -24.65 million 7
2024 -5,646,244.48 -5.65 million 1
2025 -7,535,038.29 -7.54 million 4

Insight

Obligations for PIID FA820518F0001 were heavily concentrated in 2018, when 14 awards accounted for 1.19 billion, the highest annual amount in the 10-year window. Funding remained elevated through 2022, ranging from 406.74 million to 792.10 million with 6 to 13 awards per year, indicating sustained activity before declining. Beginning in 2023, annual obligations turned negative, with small negative amounts in 2023–2025 and fewer awards, suggesting reversals or deobligations rather than new growth.

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.