Vehicle Number

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

Federal procurement summary for vehicle number 80JSC022DA023 at agency 8000 over the last 5 years.

This page summarizes award activity for vehicle number 80JSC022DA023 under agency ID 8000 during the last 5 years. The record shows 16 award actions and total obligations of $37.27 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals are based on the provided FPDS values: $37,270,654 obligated across 16 actions, with an average action value of $2,329,415.88.

Agency ID
8000
PIID
80JSC022DA023
Type
Vehicle
Total Obligated
37.27 million
37,270,654.00
Actions
16
Average Action Value
2,329,415.88

Overview

Vehicle number 80JSC022DA023 has 16 recorded award actions in the last 5 years. Total obligated amount is $37,270,654, or $37.27 million, with an average action value of $2,329,415.88. The activity profile indicates repeated procurement activity under agency ID 8000 over the analysis window.

How to use this page

Use this page to review the award history associated with vehicle number 80JSC022DA023 and to compare its obligation pattern against other FPDS records. The totals and action count provide a concise view of procurement volume, while the average action value helps frame the scale of each recorded award action.

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 = '80JSC022DA023'
    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 37,270,654.00 37.27 million 16

Insight

Within the 5-year window for vehicle PIID 80JSC022DA023, obligations are fully concentrated at the NATIONAL AERONAUTICS AND SPACE ADMINISTRATION (Agency ID 8000). NASA accounts for $37.27 million across 16 awards, indicating all recorded obligation activity in this section is tied to a single agency and a relatively limited award count. This pattern suggests a concentrated agency distribution rather than a broad spread across multiple agencies.

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 = '80JSC022DA023'
        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 = '80JSC022DA023'
    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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 37,270,654.00 37.27 million 16

Insight

Over the 5-year window, obligations for vehicle PIID 80JSC022DA023 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for the entire reported obligated amount of $37.27 million across 16 awards, indicating a single-industry procurement profile with no diversification across other NAICS codes in the provided data.

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 = '80JSC022DA023'
    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
W018 LEASE OR RENTAL OF EQUIPMENT- SPACE VEHICLES 37,270,654.00 37.27 million 16

Insight

Over the 5-year window, obligations for PIID 80JSC022DA023 are fully concentrated in PSC W018, Lease or Rental of Equipment - Space Vehicles, with $37.27 million across 16 awards. This indicates a single-PSC profile with no observable diversification within the provided row set. The distribution suggests the vehicle is used consistently for space vehicle lease or rental activity rather than a mixed services 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 = '80JSC022DA023'
    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
2022 18,930,289.33 18.93 million 4
2023 66,231,613.67 66.23 million 5
2024 -47,891,249.00 -47.89 million 6
2025 0.00 0.00 1

Insight

Obligations for PIID 80JSC022DA023 are concentrated in 2023, when funding peaked at $66.23 million across 5 awards after $18.93 million in 2022 across 4 awards. In 2024, total obligated shifted to -$47.89 million across 6 awards, indicating a substantial downward adjustment or deobligation relative to prior years. Activity in 2025 is minimal at 1 award with zero obligated dollars, suggesting limited current-year funding movement within the 5-year window.

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.