Award Number

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

Federal award record for award number FA862518F7028 under agency ID 9700, showing obligations and action history over the last 10 years.

This page summarizes award number FA862518F7028 for agency ID 9700 across the last 10 years. It includes total obligations, action count, and average action value to support procurement review.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals shown reflect the provided analysis window and may differ from a full contract file outside that period.

Agency ID
9700
PIID
FA862518F7028
Type
Award
Total Obligated
1.95 billion
1,949,541,131.10
Actions
25
Average Action Value
77,981,645.24

Overview

Across the last 10 years, award FA862518F7028 shows 25 recorded actions and total obligated funding of 1,949,541,131.1. The average action value is 77,981,645.24, which indicates a high-dollar award with repeated action activity over the period.

How to use this page

Use this page to review the award's obligation history, action frequency, and average action value within the stated analysis window. The record is most useful for procurement analysis that needs a concise view of how funding and activity are distributed over time.

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 = 'FA862518F7028'
    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,949,541,131.10 1.95 billion 25

Insight

Over the 10-year window for PIID FA862518F7028, obligation activity is fully concentrated within the DEPT OF THE AIR FORCE. The single listed agency accounts for $1.95 billion across 25 awards, indicating all reported obligations in this view are concentrated under one agency rather than distributed across multiple agencies.

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 = 'FA862518F7028'
        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,949,541,131.10 1.95 billion 25

Insight

Over the 10-year window, obligations for this award are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 98897). The vendor accounts for $1.95 billion across 25 awards, indicating sustained and repeated contract activity rather than a broad supplier distribution. This pattern reflects high award concentration and limited vendor diversification for PIID FA862518F7028.

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 = 'FA862518F7028'
    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,949,541,131.10 1.95 billion 25

Insight

Award FA862518F7028 is fully concentrated in NAICS 336411, Aircraft Manufacturing, with $1.95 billion obligated across 25 awards over the 10-year window. This indicates a single-industry procurement profile with no observed NAICS diversification in the provided data. The award volume suggests repeated contracting activity within the same industrial base rather than distribution across multiple sectors.

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 = 'FA862518F7028'
    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,949,541,131.10 1.95 billion 25

Insight

Obligations under PIID FA862518F7028 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, totaling $1.95 billion across 25 awards. This indicates a highly focused procurement profile with no diversification across other product or service categories in the provided data. The award count suggests repeated obligation activity within the same PSC rather than a broad mix of acquisition types.

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 = 'FA862518F7028'
    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
2018 995,983,218.02 995.98 million 8
2019 749,767,042.00 749.77 million 3
2020 38,076,807.00 38.08 million 3
2022 0.00 0.00 2
2023 0.00 0.00 2
2024 7,976,298.00 7.98 million 4
2025 157,737,766.08 157.74 million 3

Insight

Obligations for PIID FA862518F7028 are heavily concentrated in 2018 and 2019, which together account for the dominant share of the 10-year window at 995.98 million and 749.77 million, respectively. After 2020, obligated amounts fall sharply, with zero obligation recorded in 2022 and 2023, followed by only 7.98 million in 2024 before increasing to 157.74 million in 2025. Award counts remain low throughout the period, indicating intermittent activity rather than sustained annual obligation levels.

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.