Vehicle Number

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

Analysis of vehicle number for PIID 80MSFC21D0011 at Agency ID 8000, covering the last 5 years of award activity.

This page summarizes procurement activity tied to vehicle number under PIID 80MSFC21D0011 for Agency ID 8000 over the last 5 years. The record shows 81 award actions with total obligations of 39.83 million dollars.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals are based on the provided readable amount of 39.83 million and exact obligated value of 39829945.61.

Agency ID
8000
PIID
80MSFC21D0011
Type
Vehicle
Total Obligated
39.83 million
39,829,945.61
Actions
81
Average Action Value
491,727.72

Overview

Across the last 5 years, vehicle number under PIID 80MSFC21D0011 shows 81 award actions and total obligations of 39,829,945.61 dollars. The average action value is 491,727.72 dollars, indicating repeated award activity rather than a single obligation event. This page is intended to support review of the award history at Agency ID 8000.

How to use this page

Use this page to identify the scale and frequency of obligated activity associated with vehicle number under the listed PIID. The figures help compare this record with other procurement entries using the same analysis window, agency, or award identifier. All values reflect the provided inputs only.

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 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 39,829,945.61 39.83 million 81

Insight

Over the 5-year window, obligations for PIID 80MSFC21D0011 are fully concentrated within NASA, with $39.83 million obligated across 81 awards. This indicates a single-agency vehicle profile, with no evidence in the provided data of distribution across other agencies. The award count suggests repeated usage under the same agency relationship rather than broad interagency utilization.

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 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 = '80MSFC21D0011'
    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) 39,829,945.61 39.83 million 81

Insight

Over the 5-year window, obligations for vehicle 80MSFC21D0011 are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (Except Nanotechnology and Biotechnology). The vehicle shows 81 awards totaling $39.83 million, indicating a consistent and narrowly focused application within this single research and development category.

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 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
AR16 R&D- SPACE: AERONAUTICS/SPACE TECHNOLOGY (MANAGEMENT/SUPPORT) 39,829,945.61 39.83 million 81

Insight

Obligations on this vehicle are fully concentrated in PSC AR16, R&D- Space: Aeronautics/Space Technology (Management/Support), totaling $39.83 million across 81 awards over the 5-year window. This indicates a narrow product/service focus with spending entirely aligned to a single research and development support category. The award count suggests activity was recurring rather than isolated, but no distribution exists across additional PSCs in the provided data.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 on PIID 80MSFC21D0011 increased steadily from 2021 through 2024, rising from $7.25 million to $9.59 million, while annual award counts were mostly flat at 19 from 2022 to 2024 after 12 in 2021. The 2025 figure declined to $6.07 million and 12 awards, indicating a lower level of activity in the current period relative to the prior three years. Overall, the 5-year pattern is concentrated in 2022–2024, with a recent pullback in both obligated dollars and 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.