This award record covers PIID FA881018C0005 under agency ID 9700 for the last 5 years. It includes 150 award actions and $5,267,200,683.17 in total obligated value.
Award Number
Award Number 9700 / FA881018C0005 Federal Contract Action Summary (Last 5 Years)
Award number FA881018C0005 for agency 9700 shows 150 actions over the last 5 years with $5.27 billion obligated.
Total obligated is shown as both a readable amount and the exact recorded figure; average action value is $35,114,671.22.
Overview
Award number FA881018C0005 is tied to agency ID 9700 and the last 5 years of activity in this view. The record shows 150 actions, with total obligated value of $5,267,200,683.17 and an average action value of $35,114,671.22. The page is organized to support review of obligation volume and action frequency for this award.
How to use this page
Use this page to review the award-level obligation total and the number of actions associated with PIID FA881018C0005. The data can also support quick comparison of the average value per action against the full obligated amount. For deeper analysis, the action history should be read alongside the full award record and time period shown here.
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 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 | 5,267,200,683.17 | 5.27 billion | 150 |
Insight
Over the past 5 years, obligations for PIID FA881018C0005 are fully concentrated in a single agency, the DEPT OF THE AIR FORCE. That agency accounts for $5.27 billion across 150 awards, indicating a highly concentrated award distribution with no diversification across 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 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 | 06887 | 5,267,200,683.17 | 5.27 billion | 150 |
Insight
Over the 5-year window, obligations under PIID FA881018C0005 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 06887). The award record shows 150 actions totaling $5.27 billion, indicating complete vendor concentration and no observable distribution across additional top vendors in the provided data. This level of concentration suggests the award has been consistently executed through one contractor over the period.
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 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 |
|---|---|---|---|---|
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 5,267,200,683.17 | 5.27 billion | 150 |
Insight
Over the past 5 years, obligations for award FA881018C0005 under agency 9700 are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This NAICS accounts for 5.27 billion across 150 awards, indicating a highly focused procurement profile with no diversification across other industry codes in the provided data. The volume of awards suggests repeated use of this classification for mission-aligned R&D activity.
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 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 |
|---|---|---|---|---|
| AC24 | NATIONAL DEFENSE R&D SERVICES; ATOMIC ENERGY DEFENSE ACTIVITIES; R&D ADMINISTRATIVE EXPENSES | 5,267,200,683.17 | 5.27 billion | 150 |
Insight
For award PIID FA881018C0005 over the 5-year window, obligations are entirely concentrated in PSC AC24, with $5.27 billion across 150 awards. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The distribution suggests that R&D administrative expenses under national defense atomic energy defense activities are the dominant procurement category for this 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 = 'FA881018C0005'
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 | 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 were concentrated at the billion-dollar level in 2021 through 2023, ranging from $1.30 billion to $1.38 billion across 29 to 32 awards annually. Activity then declined sharply in 2024 and 2025, with obligations falling to $667.11 million and $608.17 million, respectively, despite award counts remaining in the mid-20s to low-30s. The pattern indicates a substantial reduction in annual obligated dollars after 2023, with relatively steady award volume compared with the earlier period.
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.