Vehicle Number

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

Analysis of vehicle number 80JSC021DA020 for agency 8000 over the last full year, showing 13 award actions totaling $45.65 million.

This page summarizes procurement activity for vehicle number 80JSC021DA020 within agency ID 8000 during the last full year. The record shows 13 award actions and total obligations of $45,646,331, with an average action value of $3,511,256.23.

Generated at 03/21/2026

Analysis period: Last full year

Amounts are based on the provided readable and exact obligation totals for the analysis window.

Agency ID
8000
PIID
80JSC021DA020
Type
Vehicle
Total Obligated
45.65 million
45,646,331.00
Actions
13
Average Action Value
3,511,256.23

Overview

The procurement record for vehicle number 80JSC021DA020 in agency 8000 shows activity concentrated in the last full year. Total obligations were $45,646,331 across 13 award actions, which results in an average action value of $3,511,256.23. This page is intended to support review of spending volume and award frequency for the identified vehicle.

How to use this page

Use this page to quickly assess the scale of obligated funding associated with PIID 80JSC021DA020. The combination of total obligations, action count, and average action value provides a compact view of procurement activity for the selected period.

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 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 45,646,331.00 45.65 million 13

Insight

For PIID 80JSC021DA020 over the 1-year window, all reported obligations are concentrated within the National Aeronautics and Space Administration. NASA accounts for $45.65 million across 13 awards, indicating a single-agency obligation profile with no distribution across other agencies in the provided data. This concentration suggests the vehicle’s activity is fully centered on NASA during the period reviewed.

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 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 = '80JSC021DA020'
    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
336415 GUIDED MISSILE AND SPACE VEHICLE PROPULSION UNIT AND PROPULSION UNIT PARTS MANUFACTURING 45,646,331.00 45.65 million 13

Insight

Over the past 1 year, obligations for PIID 80JSC021DA020 under agency 8000 are fully concentrated in NAICS 336415, Guided Missile and Space Vehicle Propulsion Unit and Propulsion Unit Parts Manufacturing. This NAICS accounts for 100% of the identified obligated value, totaling $45.65 million across 13 awards. The distribution indicates a narrow procurement focus within a single aerospace manufacturing 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 = '80JSC021DA020'
    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
2845 ROCKET ENGINES AND COMPONENTS 45,646,331.00 45.65 million 13

Insight

Over the past 1 year, obligations for PIID 80JSC021DA020 are fully concentrated in PSC 2845, Rocket Engines and Components. The award activity is limited to 13 awards totaling $45.65 million, indicating a narrow product mix with spend entirely in a single PSC category. This level of concentration suggests the vehicle is being used for a highly specialized procurement requirement rather than a broadly distributed acquisition portfolio.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 45,646,331.00 45.65 million 13

Insight

For PIID 80JSC021DA020, obligations in the 1-year window are concentrated entirely in FY 2025, with $45.65 million obligated across 13 awards. This indicates a highly concentrated funding pattern within the period reviewed, with no evidence in the provided rows of activity spread across additional years. The average obligated amount per award is roughly $3.51 million, suggesting moderate dispersion within the year despite the single-year concentration.

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.