Award Number

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

Federal award record for award number FA880214C0001 under agency ID 9700, showing obligations over the last 5 years.

This page summarizes award number FA880214C0001 for agency ID 9700 across the last 5 years. The record shows 5 award actions with total obligated amount of -$10.29 million and an average action value of -$2,058,645.07.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts reflect the provided readable and exact obligated totals for the selected analysis window.

Agency ID
9700
PIID
FA880214C0001
Type
Award
Total Obligated
-10.29 million
-10,293,225.35
Actions
5
Average Action Value
-2,058,645.07

Overview

This award record covers PIID FA880214C0001 for agency ID 9700 during the last 5 years. The total obligated amount is -$10,293,225.35 across 5 award actions, with an average action value of -$2,058,645.07. The readable total rounds to -$10.29 million and reflects the same analysis window. Use this page to review the award-level obligation pattern without adding assumptions beyond the recorded values.

How to use this page

Use this page to identify the award by PIID and review obligation totals tied to the selected agency and timeframe. The action count and average action value provide a quick view of activity level and scale. For FPDS queries, this record is best used as a summary entry point before drilling into individual actions or related obligation detail. The negative totals should be read as provided in the source data for this award record.

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 = 'FA880214C0001'
    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 -10,293,225.35 -10.29 million 5

Insight

Within the 5-year window for award PIID FA880214C0001, obligations are fully concentrated in a single top agency row: DEPT OF THE AIR FORCE (agency ID 5700). This agency accounts for 5 awards and a net total obligated amount of -$10.29 million, indicating a negative obligation profile over the period. The absence of additional agency rows suggests no observable cross-agency distribution 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 = 'FA880214C0001'
        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
THE AEROSPACE CORPORATION 12782 -10,293,225.35 -10.29 million 5

Insight

Obligations for PIID FA880214C0001 are fully concentrated in a single vendor over the 5-year window. THE AEROSPACE CORPORATION (CAGE 12782) accounts for 5 awards and a net total obligated amount of -$10.29 million, indicating all recorded activity is tied to one contractor. This concentration indicates very limited vendor distribution for the award and a net negative obligation position 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 = 'FA880214C0001'
    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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) -10,293,225.35 -10.29 million 5

Insight

Over the 5-year window, all reported obligation activity for PIID FA880214C0001 is concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This account records 5 awards with net obligations of -$10.29 million, indicating a single-NAICS profile with a negative obligation balance over the period. The absence of additional NAICS entries suggests no diversification across other industry codes in the reported data.

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 = 'FA880214C0001'
    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
AR25 R&D- SPACE: SCIENCE/APPLICATIONS (OPERATIONAL SYSTEMS DEVELOPMENT) -10,293,225.35 -10.29 million 5

Insight

Obligations are fully concentrated in PSC AR25, R&D-Space: Science/Applications (Operational Systems Development), with a net total of -$10.29 million across 5 awards over the 5-year window. This indicates the award activity in this period was limited to a single product service code and that the net obligation position was negative. The distribution shows no diversification across PSCs for this award in the queried period.

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 = 'FA880214C0001'
    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 -2,398,718.83 -2.40 million 1
2022 -2,208,787.64 -2.21 million 1
2023 -5,685,718.88 -5.69 million 3

Insight

Obligations for PIID FA880214C0001 are concentrated in three years within the 5-year window, with activity recorded only in 2021, 2022, and 2023. Annual obligations were negative in each year, moving from -$2.40 million in 2021 to -$2.21 million in 2022, then declining further to -$5.69 million in 2023. Award activity also became more concentrated in 2023, which accounted for 3 of the 5 recorded awards across the 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.