Vehicle Number

Vehicle Number 8000 / 80MSFC21D0009 Federal Contract Action Summary (Last 5 Years)

Procurement analysis for vehicle number under agency ID 8000 and PIID 80MSFC21D0009 over the last 5 years.

This page summarizes federal award activity for vehicle number associated with agency ID 8000 and PIID 80MSFC21D0009 during the last 5 years. The record shows 95 award actions with total obligations of 53.15 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals are based on the provided analysis window and reflect a total obligated amount of 53,146,141.84 and an average action value of 559,433.07.

Agency ID
8000
PIID
80MSFC21D0009
Type
Vehicle
Total Obligated
53.15 million
53,146,141.84
Actions
95
Average Action Value
559,433.07

Overview

The available data show 95 award actions tied to vehicle number for agency ID 8000 in PIID 80MSFC21D0009 over the last 5 years. Total obligated amount is 53,146,141.84, with an average action value of 559,433.07. This indicates recurring award activity within the stated analysis window.

How to use this page

Use this page to review the contract vehicle-level obligation total and action volume for the specified PIID. The figures support quick comparison of total spend and average action size without adding assumptions about scope, period performance, or vendor identity.

Top Agencies

SELECT
    content__IDV__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__IDV__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = '80MSFC21D0009'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__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
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 53,146,141.84 53.15 million 95

Insight

Over the 5-year window, obligations for vehicle PIID 80MSFC21D0009 are fully concentrated in a single agency: the National Aeronautics and Space Administration. NASA recorded 95 awards totaling $53.15 million, indicating a clear single-agency spend profile with no evidence of distribution 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__IDV__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = '80MSFC21D0009'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions

Insight

No vendor concentration was available for this analysis window.

Top NAICS

SELECT
    content__IDV__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__IDV__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = '80MSFC21D0009'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__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) 53,146,141.84 53.15 million 95

Insight

Obligations for PIID 80MSFC21D0009 over the 5-year window are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This category accounts for $53.15 million across 95 awards, indicating a highly focused obligation pattern with no observed diversification across other NAICS codes in the provided data.

Top PSC Codes

SELECT
    content__IDV__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__IDV__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = '80MSFC21D0009'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 53,146,141.84 53.15 million 95

Insight

Over the 5-year window for vehicle 80MSFC21D0009, obligations are fully concentrated in PSC R408, Support- Professional: Program Management/Support. This code accounts for $53.15 million across 95 awards, indicating a consistent pattern of program management/support services under this vehicle. No other PSC categories are provided for this section, so the visible obligation mix is entirely concentrated in one service code.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate)) AS year,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = '80MSFC21D0009'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 7,979,002.49 7.98 million 14
2022 8,514,085.03 8.51 million 25
2023 11,928,880.38 11.93 million 25
2024 12,900,272.12 12.90 million 16
2025 11,823,901.82 11.82 million 15

Insight

Obligations under PIID 80MSFC21D0009 increased from $7.98 million in 2021 to a high of $12.90 million in 2024, then eased to $11.82 million in 2025, indicating sustained but slightly lower recent funding after steady growth. Award activity was more concentrated in 2022 and 2023, each with 25 awards, compared with 14 awards in 2021 and 15–16 awards in 2024–2025. Overall, the five-year pattern shows rising dollar value with moderate volatility in award count, suggesting higher annual obligation levels without a proportional increase in award 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.