Vehicle Number

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

Federal procurement profile for vehicle number PIID 80JSC022DA003 at agency 8000, showing award activity over the last 10 years.

This page summarizes 116 award actions recorded for vehicle number 80JSC022DA003 during the last 10 years. Total obligated amount is $327.66 million, with an average action value of $2.82 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Dollar figures are based on the provided exact total obligated amount of $327,663,660.98 and the analysis window covers the last 10 years.

Agency ID
8000
PIID
80JSC022DA003
Type
Vehicle
Total Obligated
327.66 million
327,663,660.98
Actions
116
Average Action Value
2,824,686.73

Overview

Over the last 10 years, vehicle number 80JSC022DA003 has 116 recorded award actions tied to agency 8000. The total obligated amount is $327,663,660.98, which reads as $327.66 million. The average value per action is $2,824,686.73.

How to use this page

Use this page to review the volume and obligation level associated with PIID 80JSC022DA003 within the stated analysis window. The figures provide a concise view of procurement activity without adding assumptions about contract type, product scope, or performance details.

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 = '80JSC022DA003'
    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 327,663,660.98 327.66 million 116

Insight

NASA (agency ID 8000) accounts for $327.66 million in total obligated value across 116 awards for PIID 80JSC022DA003 over the 10-year window. Obligations are fully concentrated in a single top agency, indicating no visible interagency distribution in the provided data. The average obligated value per award is approximately $2.82 million, suggesting the vehicle has supported repeated, moderately sized obligations rather than a small number of large actions.

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 = '80JSC022DA003'
        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 = '80JSC022DA003'
    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) 327,663,660.98 327.66 million 116

Insight

Obligations for PIID 80JSC022DA003 are fully concentrated in NAICS 541715, with $327.66 million obligated across 116 awards over the 10-year window. This indicates a single-sector procurement profile centered on research and development in the physical, engineering, and life sciences. The concentration suggests limited NAICS diversification within 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 = '80JSC022DA003'
    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
AR11 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH 327,663,660.98 327.66 million 116

Insight

Obligations for vehicle PIID 80JSC022DA003 over the 10-year window are fully concentrated in PSC AR11, which accounts for the entire $327.66 million obligated across 116 awards. This indicates a highly focused spending profile with no observed PSC diversification in the provided data. The concentration suggests the vehicle was used consistently for space R&D and supporting activities, with obligations distributed across multiple awards rather than a single transaction.

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 = '80JSC022DA003'
    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
2021 1,416,849.00 1.42 million 2
2022 90,970,357.44 90.97 million 24
2023 77,470,169.48 77.47 million 28
2024 81,875,790.54 81.88 million 29
2025 75,930,494.52 75.93 million 33

Insight

Obligations under PIID 80JSC022DA003 were highly concentrated in the most recent four years of the 10-year window, with 2021 at just $1.42 million across 2 awards and a sharp increase in 2022 to $90.97 million across 24 awards. Funding remained elevated in 2023–2025, ranging from $75.93 million to $81.88 million, while award counts increased from 28 to 33. This pattern indicates sustained high-level activity after 2021, with obligations distributed across a growing number of awards rather than a single-year spike.

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.