Award Number

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

Federal procurement summary for award number FA881018C0005 under agency ID 9700, covering the last 10 years of obligations and actions.

This page summarizes award number FA881018C0005 for agency ID 9700 over the last 10 years. The record shows 185 award actions and total obligations of 7.27 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated is 7,270,800,456.42 and average action value is 39,301,624.09.

Agency ID
9700
PIID
FA881018C0005
Type
Award
Total Obligated
7.27 billion
7,270,800,456.42
Actions
185
Average Action Value
39,301,624.09

Overview

Award number FA881018C0005 under agency ID 9700 has 185 recorded actions in the last 10 years. Total obligated amounts to 7,270,800,456.42, with an average action value of 39,301,624.09. These figures reflect the obligation history associated with this award record.

How to use this page

Use this page to review the obligation level and action count tied to FA881018C0005 over the selected period. It is useful for quick reference when comparing award activity, tracking spending volume, or locating the record in FPDS analysis.

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 = 'FA881018C0005'
    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 7,270,800,456.42 7.27 billion 185

Insight

For PIID FA881018C0005 over the 10-year window, all reported obligation is concentrated in a single awarding agency: the Department of the Air Force. That agency accounts for $7.27 billion across 185 awards, indicating a highly concentrated award pattern with no visible distribution to other agencies in the provided data.

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 = 'FA881018C0005'
        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 06887 7,270,800,456.42 7.27 billion 185

Insight

For award FA881018C0005 over the 10-year window, obligations are fully concentrated with a single vendor. LOCKHEED MARTIN CORPORATION (CAGE 06887) accounts for $7.27 billion across 185 awards, indicating a highly concentrated vendor distribution with no other vendors present in this section. This pattern suggests the award has been executed through a sustained, exclusive relationship with one prime contractor.

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 = 'FA881018C0005'
    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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 7,270,800,456.42 7.27 billion 185

Insight

The award is fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), which accounts for the entire 10-year obligated total of $7.27 billion across 185 awards. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume of awards suggests repeated obligating activity within a single R&D category rather than a broad mix of procurement types.

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 = 'FA881018C0005'
    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
AC24 NATIONAL DEFENSE R&D SERVICES; ATOMIC ENERGY DEFENSE ACTIVITIES; R&D ADMINISTRATIVE EXPENSES 5,542,675,188.31 5.54 billion 155
AC24 R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (ENGINEERING DEVELOPMENT) 1,728,125,268.11 1.73 billion 30

Insight

Obligations under PIID FA881018C0005 are highly concentrated in PSC AC24 classifications over the 10-year window. The largest PSC entry accounts for $5.54 billion across 155 awards, while the second AC24 entry adds $1.73 billion across 30 awards, indicating substantial spending in defense R&D and missile/space systems development. This distribution suggests the award is dominated by a small set of related R&D service categories rather than a broad mix of PSCs.

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 = 'FA881018C0005'
    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 359,115,000.00 359.12 million 7
2019 830,454,000.20 830.45 million 12
2020 814,030,773.05 814.03 million 16
2021 1,311,975,699.13 1.31 billion 30
2022 1,300,980,581.45 1.30 billion 29
2023 1,378,962,145.08 1.38 billion 32
2024 667,107,726.90 667.11 million 26
2025 608,174,530.61 608.17 million 33

Insight

Obligations for PIID FA881018C0005 increased from 359.12 million in 2018 to a peak of 1.38 billion in 2023, with award counts rising from 7 to 32 over the same period. Activity remained at roughly 1.30–1.38 billion in 2021–2023, indicating a sustained high-obligation phase rather than a single-year spike. In 2024 and 2025, obligations declined to 667.11 million and 608.17 million, while award counts stayed elevated at 26 and 33, suggesting broader distribution across more awards at lower annual dollar volume.

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.