Award Number

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

Award number FA861520F0001 under agency ID 9700 shows 29 actions over the last 5 years with $1.33 billion obligated.

This page summarizes federal procurement activity for award number FA861520F0001 within agency ID 9700 over the last 5 years. The award totals $1,326,668,723.37 in obligated funding across 29 actions.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts are shown as obligated dollars for the selected analysis window and may differ from other reporting periods or rollups.

Agency ID
9700
PIID
FA861520F0001
Type
Award
Total Obligated
1.33 billion
1,326,668,723.37
Actions
29
Average Action Value
45,747,197.36

Overview

Over the last 5 years, award number FA861520F0001 recorded 29 award actions and $1,326,668,723.37 in total obligated value. The average action value is $45,747,197.36, indicating a high-dollar award with multiple recorded actions in the period.

How to use this page

Use this page to review the overall scale and action history for award FA861520F0001 under agency ID 9700. The summary is useful for procurement analysis, trend review, and comparing this award against other federal obligations in the same reporting window.

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 = 'FA861520F0001'
    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 1,326,668,723.37 1.33 billion 27
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 2

Insight

Obligations for PIID FA861520F0001 are highly concentrated in the DEPT OF THE AIR FORCE, which accounts for $1.33 billion across 27 awards over the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears in the award history with 2 awards but no obligated value reported. This distribution indicates that the funding and award activity are overwhelmingly associated with the Air Force, with DCMA playing only a nominal, non-obligating role.

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 = 'FA861520F0001'
        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 1,326,668,723.37 1.33 billion 29

Insight

The obligation base for this award is fully concentrated in a single vendor. LOCKHEED MARTIN CORPORATION (CAGE 81755) accounts for $1.33 billion across 29 awards over the 5-year window, indicating a highly concentrated vendor distribution. This level of concentration suggests the procurement activity under PIID FA861520F0001 is dominated by one prime contractor relationship.

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 = 'FA861520F0001'
    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 1,326,668,723.37 1.33 billion 29

Insight

Over the 5-year window, this award is fully concentrated in NAICS 336411, Aircraft Manufacturing, with $1.33 billion obligated across 29 awards. This indicates a highly focused procurement profile tied to aircraft manufacturing rather than a diversified NAICS mix. The volume of awards alongside the large obligation total suggests sustained activity in this industrial category.

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 = 'FA861520F0001'
    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 1,326,668,723.37 1.33 billion 29

Insight

Obligations for PIID FA861520F0001 over the 5-year window are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $1.33 billion obligated across 29 awards. This indicates a narrow procurement profile and no observable PSC diversity within the provided data. The concentration suggests the award is focused on a single aircraft-related supply category rather than a broad mix of products or services.

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 = 'FA861520F0001'
    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
2021 10,000,000.00 10.00 million 3
2022 -4,836,013.73 -4.84 million 4
2023 228,793,120.27 228.79 million 3
2024 1,156,886,415.66 1.16 billion 7
2025 -64,174,798.83 -64.17 million 12

Insight

Obligations for PIID FA861520F0001 are highly uneven over the 5-year window, with a modest $10.00 million in 2021 followed by a negative net obligation of $4.84 million in 2022. Funding then increased sharply in 2023 to $228.79 million and peaked in 2024 at $1.16 billion, before turning negative again in 2025 at $64.17 million. Award activity also concentrated later in the period, rising from 3–4 awards in 2021–2023 to 7 in 2024 and 12 in 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.