Vehicle Number

Vehicle Number 8000 / 80MSFC21DA007 Federal Contract Action Summary (Last Year)

Procurement overview for vehicle number under agency 8000, PIID 80MSFC21DA007, covering the last full year.

This page summarizes award activity tied to vehicle number for agency 8000 under PIID 80MSFC21DA007 during the last full year. Total obligations were 11.26 million across 15 award actions, with an average action value of 750,666.73.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the provided exact obligated amount of 11,260,000.9 and the stated analysis window of the last full year.

Agency ID
8000
PIID
80MSFC21DA007
Type
Vehicle
Total Obligated
11.26 million
11,260,000.90
Actions
15
Average Action Value
750,666.73

Overview

The award record for vehicle number under agency 8000 and PIID 80MSFC21DA007 shows 15 actions in the last full year. Total obligated funding was 11,260,000.9, which is approximately 11.26 million. The average value per award action was 750,666.73.

How to use this page

Use this page to review the scale and frequency of obligation activity tied to this vehicle number in the stated period. The figures support a quick read of total funding, action count, and average action value without adding assumptions about scope or performance.

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 = '80MSFC21DA007'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 11,260,000.90 11.26 million 15

Insight

For the 1-year window, obligations for PIID 80MSFC21DA007 are fully concentrated within National Aeronautics and Space Administration (agency ID 8000), with $11.26 million obligated across 15 awards. This indicates a single-agency funding profile with no distribution across other agencies in the provided data. The award count suggests activity is recurring rather than a one-time obligation, but the available row does not support broader cross-agency trend assessment.

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 = '80MSFC21DA007'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 = '80MSFC21DA007'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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) 11,260,000.90 11.26 million 15

Insight

Within the 1-year window, obligations for PIID 80MSFC21DA007 are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This activity accounts for $11.26 million across 15 awards, indicating a narrow and consistent scope of work rather than a diversified NAICS distribution.

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 = '80MSFC21DA007'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 11,260,000.90 11.26 million 15

Insight

Obligations for PIID 80MSFC21DA007 are fully concentrated in PSC R408, Support- Professional: Program Management/Support, with $11.26 million across 15 awards in the 1-year window. This indicates a narrow PSC distribution and suggests the vehicle is being used primarily for program management and support services rather than a broader mix of requirements.

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 = '80MSFC21DA007'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 11,260,000.90 11.26 million 15

Insight

For PIID 80MSFC21DA007, the 1-year annual trend shows $11.26 million obligated in FY 2025 across 15 awards. The obligation volume is concentrated entirely in a single year in the provided window, indicating no multi-year distribution within this dataset. This pattern suggests activity is current and clustered rather than spread over time.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.