This page summarizes obligations and action activity for award FA881013C0002 over the last 10 years. The record shows $1.57 billion in total obligated value across 269 actions, for an average action value of $5.83 million.
Award Number
Award Number 9700 / FA881013C0002 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award number FA881013C0002 under agency ID 9700 covering the last 10 years.
Values shown use the provided analysis window and reflect total obligated exact amount of 1569509444.57.
Overview
Award FA881013C0002 is a federal procurement record for agency ID 9700 with activity measured over the last 10 years. The award reflects 269 recorded actions and a total obligated amount of 1,569,509,444.57 dollars.
How to use this page
Use this page to review overall obligation volume and action frequency for award FA881013C0002. The average action value of 5,834,607.6 dollars provides a compact measure of the scale of individual actions within the period.
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 = 'FA881013C0002'
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,569,509,444.57 | 1.57 billion | 261 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 8 |
Insight
Obligations for PIID FA881013C0002 are highly concentrated within the Department of the Air Force, which accounts for $1.57 billion across 261 awards over the 10-year window. By comparison, the Defense Contract Management Agency is associated with 8 awards but reports no obligated dollars. This indicates that obligation activity is overwhelmingly centralized in the Air Force, with DCMA appearing only as a limited award participant by count.
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 = 'FA881013C0002'
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 | 1,220,850,690.85 | 1.22 billion | 230 |
| LOCKHEED MARTIN CORPORATION | 348,658,753.72 | 348.66 million | 39 |
Insight
Obligations are highly concentrated with LOCKHEED MARTIN CORPORATION, which accounts for the overwhelming majority of top-vendor dollars in this 10-year window. The vendor appears under two entries, with CAGE 06887 reflecting 1.22 billion across 230 awards and an additional 348.66 million across 39 awards with no CAGE provided. This distribution indicates a strong reliance on a single vendor name, with spend spread across multiple awards rather than a single isolated obligation stream.
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 = 'FA881013C0002'
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 |
|---|---|---|---|---|
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 1,569,509,444.57 | 1.57 billion | 269 |
Insight
Over the 10-year window, obligations on award FA881013C0002 are entirely concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This category accounts for $1.57 billion across 269 awards, indicating a sustained and highly focused procurement profile within this industry. No other NAICS codes are reflected in the provided rows, so diversification across sectors cannot be assessed from this section.
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 = 'FA881013C0002'
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 |
|---|---|---|---|---|
| AC25 | R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (OPERATIONAL SYSTEMS DEVELOPMENT) | 1,275,833,865.84 | 1.28 billion | 153 |
| AC25 | NATIONAL DEFENSE R&D SVCS; ATOMIC ENERGY DEFENSE ACTIVITIES; R&D FACILITIES & MAJ EQUIP | 293,675,578.73 | 293.68 million | 116 |
Insight
Obligations under PIID FA881013C0002 are concentrated in PSC AC25-coded R&D activity, with 1.28 billion obligated across 153 awards in the primary AC25 description. A second AC25-coded description accounts for an additional 293.68 million across 116 awards, indicating a substantial but smaller share of spend in the same PSC family. Taken together, the two rows suggest a sustained emphasis on defense-related R&D with obligations spread across a relatively high number of actions rather than concentrated in a few awards.
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 = 'FA881013C0002'
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 |
|---|---|---|---|
| 2016 | 274,663,070.72 | 274.66 million | 37 |
| 2017 | 162,342,492.00 | 162.34 million | 19 |
| 2018 | 223,446,945.00 | 223.45 million | 26 |
| 2019 | 376,533,462.85 | 376.53 million | 32 |
| 2020 | 290,217,992.27 | 290.22 million | 50 |
| 2021 | 101,294,486.14 | 101.29 million | 58 |
| 2022 | 37,351,061.67 | 37.35 million | 12 |
| 2023 | 55,322,480.92 | 55.32 million | 13 |
| 2024 | 43,080,758.00 | 43.08 million | 16 |
| 2025 | 5,256,695.00 | 5.26 million | 6 |
Insight
Obligations for PIID FA881013C0002 were heavily concentrated in 2016–2020, when annual funding ranged from $162.34 million to $376.53 million and peaked in 2019 at $376.53 million. Award volume was also highest in 2021 at 58 awards, but obligated dollars declined sharply after 2020, falling to $101.29 million in 2021 and remaining below $55.33 million in each year from 2022 through 2025. This indicates a clear shift from a high-dollar period to smaller annual obligation levels with more limited award activity in the most recent years.
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.