Award Number

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

Federal award record for award number FA881013C0002 under agency ID 9700, summarizing obligated dollars and action activity over the last 5 years.

This page presents the federal procurement history for award number FA881013C0002 for agency ID 9700. Over the last 5 years, the award shows 105 actions and total obligated dollars of 242.31 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Monetary totals reflect the provided analysis window and include an exact obligated amount of 242305481.73 with an average action value of 2307671.25.

Agency ID
9700
PIID
FA881013C0002
Type
Award
Total Obligated
242.31 million
242,305,481.73
Actions
105
Average Action Value
2,307,671.25

Overview

The award record for FA881013C0002 covers 105 actions in the last 5 years, with total obligated funding of 242305481.73. The readable obligated total is 242.31 million, and the average action value is 2307671.25. This page is a procurement summary for the award and does not add contract details beyond the supplied data.

How to use this page

Use this page to review the award-level obligation total and action count for FA881013C0002 within the stated analysis window. It supports basic procurement screening, trend checks, and cross-reference work when comparing obligation volume to action frequency.

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 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 242,305,481.73 242.31 million 101
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 4

Insight

For PIID FA881013C0002, obligations over the 5-year window are highly concentrated in the DEPT OF THE AIR FORCE, which accounts for $242.31 million across 101 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only marginally in the award count, with 4 awards and no obligated value recorded. This distribution indicates that obligated activity is overwhelmingly centered with the Air Force, with DCMA participation limited to non-obligated records.

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 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 242,305,481.73 242.31 million 105

Insight

Obligations under PIID FA881013C0002 over the past 5 years are fully concentrated in a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 06887). This vendor accounts for $242.31 million across 105 awards, indicating a highly concentrated award distribution with repeated obligation activity to the same contractor. The pattern suggests this award has been managed through sustained, incremental actions rather than broad vendor distribution.

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 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 242,305,481.73 242.31 million 105

Insight

Over the 5-year window, this award is entirely concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with $242.31 million obligated across 105 actions. The absence of additional NAICS codes in the provided rows indicates a fully concentrated spending profile for this award within the reported period. This suggests the award is tightly aligned to a single industrial classification rather than a diversified set of requirements.

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 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
AC25 NATIONAL DEFENSE R&D SVCS; ATOMIC ENERGY DEFENSE ACTIVITIES; R&D FACILITIES & MAJ EQUIP 242,305,481.73 242.31 million 105

Insight

Over the 5-year window, obligations for PIID FA881013C0002 are fully concentrated in PSC AC25, with $242.31 million across 105 awards. This indicates a narrow procurement profile focused on National Defense R&D services and related facilities/major equipment. The award activity is not distributed across multiple PSCs in the provided data, so this category represents the sole and dominant spending classification for this action.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 highest in 2021 at $101.29 million across 58 awards, then declined sharply in 2022 to $37.35 million across 12 awards. Funding recovered modestly in 2023 to $55.32 million and remained in the $43.08 million range in 2024, with award counts of 13 to 16, indicating a more moderate but still active obligation pattern. Activity in 2025 is limited to $5.26 million across 6 awards, suggesting a lower current-year run rate relative to prior 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.