Vehicle Number

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

Federal procurement analysis for vehicle number 80JSC021DA020 under Agency ID 8000, covering the last 5 years of recorded award activity.

This page summarizes award activity tied to vehicle number 80JSC021DA020 over the last 5 years. The record shows 61 award actions with total obligations of 206.06 million dollars and an average action value of 3,377,998.69.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals are based on the exact obligated amount of 206,057,920.23 and the reported award action count for the selected analysis window.

Agency ID
8000
PIID
80JSC021DA020
Type
Vehicle
Total Obligated
206.06 million
206,057,920.23
Actions
61
Average Action Value
3,377,998.69

Overview

Vehicle number 80JSC021DA020 has 61 recorded award actions in the last 5 years under Agency ID 8000. Total obligations for the period are 206,057,920.23, which reads as 206.06 million dollars, with an average action value of 3,377,998.69. These figures describe the observed award activity in the selected window and do not add detail beyond the reported totals.

How to use this page

Use this page to review the scale and frequency of procurement activity associated with the vehicle number in the selected period. The combination of total obligated amount, action count, and average action value provides a compact view of activity volume without implying contract scope, performance, or composition beyond the available data.

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 = '80JSC021DA020'
    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 206,057,920.23 206.06 million 61

Insight

Within the 5-year window for vehicle PIID 80JSC021DA020, obligations are fully concentrated at one agency: NASA, with $206.06 million across 61 awards. This indicates a single-agency funding pattern rather than a distributed obligation profile. The award volume suggests repeated vehicle activity under the same agency relationship over the period.

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 = '80JSC021DA020'
        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 = '80JSC021DA020'
    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
336415 GUIDED MISSILE AND SPACE VEHICLE PROPULSION UNIT AND PROPULSION UNIT PARTS MANUFACTURING 206,057,920.23 206.06 million 61

Insight

Over the 5-year window, obligations for vehicle PIID 80JSC021DA020 are fully concentrated in NAICS 336415, Guided Missile and Space Vehicle Propulsion Unit and Propulsion Unit Parts Manufacturing. This NAICS accounts for $206.06 million across 61 awards, indicating a highly focused procurement profile with no diversification across additional NAICS codes in the provided data. The pattern suggests sustained reliance on a single industrial base category for this vehicle.

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 = '80JSC021DA020'
    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
2845 ROCKET ENGINES AND COMPONENTS 206,057,920.23 206.06 million 61

Insight

Over the 5-year window, obligations for vehicle PIID 80JSC021DA020 are fully concentrated in PSC 2845, Rocket Engines and Components, with $206.06 million across 61 awards. This indicates a narrow product/service mix and sustained procurement activity within a single PSC rather than a diversified spend profile. The award count suggests repeated awards in the same category, but no distribution across additional PSCs is evident in this section.

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 = '80JSC021DA020'
    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 5,140,611.00 5.14 million 4
2022 32,553,424.00 32.55 million 11
2023 62,446,006.15 62.45 million 15
2024 60,271,548.08 60.27 million 18
2025 45,646,331.00 45.65 million 13

Insight

Obligations under PIID 80JSC021DA020 increased sharply from $5.14 million in 2021 to $32.55 million in 2022 and peaked at $62.45 million in 2023. Funding remained elevated in 2024 at $60.27 million before declining to $45.65 million in 2025, indicating a sustained multi-year concentration after the initial ramp-up. Award activity followed a similar pattern, rising from 4 awards in 2021 to a high of 18 in 2024, then moderating to 13 in 2025.

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.