Award Number

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

Award number FA862518F7028 for agency 9700 shows 11 award actions over the last 5 years with $165.71 million obligated.

This page summarizes procurement activity for award number FA862518F7028 under agency ID 9700 during the last 5 years. Total obligated amount is $165,714,064.08 across 11 award actions, for an average action value of $15,064,914.92.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation totals are shown as provided, with the readable value rounded to $165.71 million and the exact value preserved as $165,714,064.08.

Agency ID
9700
PIID
FA862518F7028
Type
Award
Total Obligated
165.71 million
165,714,064.08
Actions
11
Average Action Value
15,064,914.92

Overview

The award record for FA862518F7028 covers 11 actions in the last 5 years and totals $165,714,064.08 in obligations. The average action value is $15,064,914.92, indicating that the award has been modified or incrementally obligated over time. This page is limited to the provided award-level summary for agency ID 9700.

How to use this page

Use this page to review the overall obligation pattern for award number FA862518F7028 and to compare the total and average action values against other award records. The figures support quick screening, trend review, and cross-reference work when analyzing procurement activity for agency 9700.

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 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 165,714,064.08 165.71 million 11

Insight

Over the 5-year window, obligations for PIID FA862518F7028 are fully concentrated in a single agency: the Department of the Air Force (agency ID 5700). This agency accounts for $165.71 million across 11 awards, indicating that funding and award activity are narrowly distributed rather than spread 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 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 98897 165,714,064.08 165.71 million 11

Insight

Obligations on this award are fully concentrated with a single vendor: LOCKHEED MARTIN CORPORATION (CAGE 98897), which accounts for $165.71 million across 11 awards over the 5-year window. This indicates a highly concentrated award distribution with no evidence of broader vendor dispersion in the provided data. The vendor’s repeated receipt of obligations suggests sustained reliance on this contractor for this PIID.

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 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 165,714,064.08 165.71 million 11

Insight

Obligations for PIID FA862518F7028 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $165.71 million obligated across 11 awards over the 5-year window. This indicates a narrow industry distribution and confirms the award is tied to a single manufacturing category rather than spread across multiple NAICS codes. The concentration is significant for assessing vendor and sector exposure within this award record.

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 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
1510 AIRCRAFT, FIXED WING 165,714,064.08 165.71 million 11

Insight

Obligations are fully concentrated in PSC 1510, Aircraft, Fixed Wing, totaling $165.71 million across 11 awards in the 5-year window. This indicates the award is narrowly focused on fixed-wing aircraft requirements, with no evidence of PSC diversification within the provided data. The distribution suggests a sustained procurement pattern centered on a single 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 = 'FA862518F7028'
    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 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 were minimal in 2022 and 2023 at $0, despite 2 awards in each year. Activity increased in 2024 to $7.98 million across 4 awards, then rose sharply in 2025 to $157.74 million across 3 awards. The funding pattern is highly concentrated in 2025, indicating a significant shift in obligation magnitude without a comparable increase in award count.

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.