Vehicle Number

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

Analyst summary of vehicle number activity for PIID 80JSC020D0017 at agency 8000 over the last 10 years.

This page summarizes procurement activity for the vehicle number associated with PIID 80JSC020D0017 at agency 8000 over the last 10 years. The record shows 57 award actions with total obligated amount of 86.99 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from separately rounded displays because the exact obligated amount is 86988846.

Agency ID
8000
PIID
80JSC020D0017
Type
Vehicle
Total Obligated
86.99 million
86,988,846.00
Actions
57
Average Action Value
1,526,120.11

Overview

For the last 10 years, the vehicle number record tied to PIID 80JSC020D0017 at agency 8000 shows 57 award actions and $86.99 million in total obligations. The exact obligated total is 86,988,846, with an average action value of 1,526,120.11. This page is intended to help users review the scale and frequency of activity linked to the vehicle number.

How to use this page

Use this page to assess procurement volume, action frequency, and average obligation size for the vehicle number associated with PIID 80JSC020D0017. The figures support quick comparisons across similar FPDS Query pages and provide a concise starting point for deeper contract review.

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 = '80JSC020D0017'
    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 86,988,846.00 86.99 million 57

Insight

Within the 10-year window, obligations for vehicle PIID 80JSC020D0017 are fully concentrated in NASA (agency ID 8000), which accounts for $86.99 million across 57 awards. This indicates a single-agency funding pattern with no cross-agency distribution in the provided data. The award count suggests repeated use of the vehicle within the same agency rather than broad federal adoption.

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 = '80JSC020D0017'
        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 = '80JSC020D0017'
    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) 86,988,846.00 86.99 million 57

Insight

Obligations under PIID 80JSC020D0017 are fully concentrated in NAICS 541715, with $86.99 million obligated across 57 awards over the 10-year window. This indicates a narrow procurement profile centered on research and development in the physical, engineering, and life sciences. No other NAICS codes are present in the provided rows, so diversification across industries cannot be assessed from this section.

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 = '80JSC020D0017'
    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
AR17 R&D- SPACE: AERONAUTICS/SPACE TECHNOLOGY (COMMERCIALIZED) 86,988,846.00 86.99 million 57

Insight

Over the 10-year window, vehicle PIID 80JSC020D0017 is entirely concentrated in PSC AR17, R&D - Space: Aeronautics/Space Technology (Commercialized). This PSC accounts for $86.99 million across 57 awards, indicating sustained obligation activity under a single product service classification. The absence of additional PSCs in the provided rows suggests a highly focused acquisition profile for this vehicle.

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 = '80JSC020D0017'
    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
2020 38,998,846.00 39.00 million 7
2021 3,990,000.00 3.99 million 4
2022 20,300,852.35 20.30 million 10
2023 -1,800,852.35 -1.80 million 8
2024 0.00 0.00 11
2025 25,500,000.00 25.50 million 17

Insight

Obligations on PIID 80JSC020D0017 are highly uneven over the 2020–2025 window, with a peak in 2020 at $39.0 million and another large increase in 2025 at $25.5 million. Activity is spread across multiple years and award actions, but funding is concentrated in a few high-obligation years, while 2021 and 2024 were comparatively low or zero-obligation periods despite recorded award counts. The 2023 negative obligation indicates a downward adjustment or de-obligation, which reduced net annual funding before the rebound 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.