Vehicle Number

Vehicle Number 8000 / 80MSFC20D0008 Federal Contract Action Summary (Last 10 Years)

Federal procurement record for vehicle number 80MSFC20D0008 at agency 8000, showing obligations over the last 10 years.

This page summarizes award activity tied to vehicle number 80MSFC20D0008 for agency 8000 across the last 10 years. The record shows 108 award actions totaling $1,218,933,333.38, with an average action value of $11,286,419.75.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided readable obligation amount and exact obligated value for the selected analysis window.

Agency ID
8000
PIID
80MSFC20D0008
Type
Vehicle
Total Obligated
1.22 billion
1,218,933,333.38
Actions
108
Average Action Value
11,286,419.75

Overview

Over the last 10 years, vehicle number 80MSFC20D0008 is associated with 108 award actions at agency 8000. The total obligated amount is $1,218,933,333.38, which is approximately $1.22 billion. The average action value is $11,286,419.75.

How to use this page

Use this page to review obligation volume and action count for vehicle number 80MSFC20D0008 within the selected period. The figures support high-level analysis of procurement activity without adding assumptions about scope, performance, or mission use.

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 = '80MSFC20D0008'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 1,218,933,333.38 1.22 billion 108

Insight

For PIID 80MSFC20D0008 over the 10-year window, all reported obligations in this top_agencies view are concentrated within the National Aeronautics and Space Administration (agency ID 8000). NASA accounts for $1.22 billion across 108 awards, indicating sustained and highly concentrated activity under this vehicle. No other agency rows are present in the provided data, so this view reflects a single-agency distribution.

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 = '80MSFC20D0008'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 = '80MSFC20D0008'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
336415 GUIDED MISSILE AND SPACE VEHICLE PROPULSION UNIT AND PROPULSION UNIT PARTS MANUFACTURING 1,218,933,333.38 1.22 billion 108

Insight

Obligations under PIID 80MSFC20D0008 are fully concentrated in NAICS 336415, Guided Missile and Space Vehicle Propulsion Unit and Propulsion Unit Parts Manufacturing, with $1.22 billion across 108 awards over the 10-year window. This indicates a narrow industrial scope and strong reliance on a single manufacturing category for this vehicle. The award volume suggests repeated tasking within the same NAICS, rather than distribution across multiple sectors.

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 = '80MSFC20D0008'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
AR11 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH 1,169,433,333.38 1.17 billion 107
AR11 R&D- SPACE: AERONAUTICS/SPACE TECHNOLOGY (BASIC RESEARCH) 49,500,000.00 49.50 million 1

Insight

Obligations under this vehicle are heavily concentrated in PSC AR11. One AR11 entry accounts for $1.17 billion across 107 awards, indicating a broad base of small-to-moderate actions, while the other AR11 entry totals $49.5 million across 1 award, showing a much smaller but highly concentrated obligation. Across the 10-year window, the activity is dominated by a single PSC family with limited diversification.

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 = '80MSFC20D0008'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2020 49,500,000.00 49.50 million 3
2021 140,200,000.00 140.20 million 13
2022 149,709,771.00 149.71 million 13
2023 298,314,617.02 298.31 million 17
2024 337,752,143.98 337.75 million 26
2025 243,456,801.38 243.46 million 36

Insight

Obligations for PIID 80MSFC20D0008 increased sharply over the period, rising from 49.50 million in 2020 to a peak of 337.75 million in 2024 before declining to 243.46 million in 2025. Award activity also expanded materially, increasing from 3 awards in 2020 to 36 awards in 2025, indicating broader distribution across more actions over time. The largest annual obligations were concentrated in 2023 and 2024, which together account for the high point of the 10-year window.

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.