Vehicle Number

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

Procurement analysis page for vehicle number associated with PIID 80MSFC21D0011 in Agency ID 8000 over the last 10 years.

This page summarizes award activity for vehicle number under PIID 80MSFC21D0011 for Agency ID 8000 across the last 10 years. It shows 86 award actions with total obligations of $42.13 million and an average action value of $489,909.34.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and rounded readable value; exact obligated amount is $42,132,203.36.

Agency ID
8000
PIID
80MSFC21D0011
Type
Vehicle
Total Obligated
42.13 million
42,132,203.36
Actions
86
Average Action Value
489,909.34

Overview

Over the last 10 years, vehicle number activity under PIID 80MSFC21D0011 recorded 86 award actions and $42,132,203.36 in obligations. The average action value was $489,909.34, which indicates a moderate number of transactions with substantial aggregate spending.

How to use this page

Use this page to review obligation totals and action counts for vehicle number in Agency ID 8000, then compare activity over time within the 10-year window. The figures support basic procurement review, contract tracking, and spend analysis for PIID 80MSFC21D0011.

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 = '80MSFC21D0011'
    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 42,132,203.36 42.13 million 86

Insight

Over the 10-year window, obligations for PIID 80MSFC21D0011 are fully concentrated within a single agency: the National Aeronautics and Space Administration (Agency ID 8000). NASA accounts for $42.13 million across 86 awards, indicating the vehicle has been used consistently within one agency rather than distributed across multiple agencies. This pattern suggests agency-specific reliance and limited cross-agency usage.

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 = '80MSFC21D0011'
        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 = '80MSFC21D0011'
    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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 42,132,203.36 42.13 million 86

Insight

Over the 10-year window, obligations under vehicle 80MSFC21D0011 are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This category accounts for $42.13 million across 86 awards, indicating a sustained and highly focused procurement profile with no visible diversification 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 = '80MSFC21D0011'
    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
AR16 R&D- SPACE: AERONAUTICS/SPACE TECHNOLOGY (MANAGEMENT/SUPPORT) 42,132,203.36 42.13 million 86

Insight

Obligations under vehicle 80MSFC21D0011 are fully concentrated in PSC AR16, with $42.13 million obligated across 86 awards over the 10-year window. This indicates a narrowly focused requirement profile centered on R&D space/aeronautics management and support. The award count suggests recurring use of the vehicle for the same PSC rather than a broad distribution across multiple product or service categories.

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 = '80MSFC21D0011'
    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 2,302,257.75 2.30 million 5
2021 7,254,849.77 7.25 million 12
2022 8,164,575.98 8.16 million 19
2023 8,750,543.75 8.75 million 19
2024 9,588,217.88 9.59 million 19
2025 6,071,758.23 6.07 million 12

Insight

Obligations for PIID 80MSFC21D0011 increased sharply from $2.30 million across 5 awards in 2020 to a range of $7.25 million to $9.59 million in 2021–2024, indicating a sustained period of higher annual activity. Award volume also rose from 5 to 19 awards by 2022 and remained at 19 through 2024, suggesting both increased funding and a broader distribution of actions. In 2025, obligations declined to $6.07 million with 12 awards, below the prior three-year peak but still above 2020 levels.

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.