Vehicle Number

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

Vehicle number 80JSC017C0001 for Agency ID 8000 shows 91 award actions over the last 5 years, with total obligations of $85.35 million.

This page summarizes procurement activity tied to vehicle number 80JSC017C0001 for Agency ID 8000 during the last 5 years. The record includes 91 award actions and $85,349,020.71 in total obligated value, with an average action value of $937,901.33.

Generated at 03/21/2026

Analysis period: Last 5 years

Values are reported for the last 5 years and reflect the provided readable and exact obligated totals.

Agency ID
8000
PIID
80JSC017C0001
Type
Vehicle
Total Obligated
85.35 million
85,349,020.71
Actions
91
Average Action Value
937,901.33

Overview

Vehicle number 80JSC017C0001 is associated with 91 award actions in the last 5 years for Agency ID 8000. Total obligated value is $85,349,020.71, which is about $85.35 million when rounded for display. The average action value across the period is $937,901.33.

How to use this page

This page is intended as a procurement summary for the identified vehicle record and supports review of obligation volume and action frequency. The figures shown cover the stated 5-year window only and should be read as a total activity snapshot for PIID 80JSC017C0001.

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 = '80JSC017C0001'
    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 85,349,020.71 85.35 million 91

Insight

Within the 5-year window, obligations for PIID 80JSC017C0001 are fully concentrated in a single agency: the National Aeronautics and Space Administration. NASA accounts for 91 awards totaling $85.35 million, indicating all observed activity for this vehicle is agency-specific rather than distributed 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 = '80JSC017C0001'
        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 = '80JSC017C0001'
    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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 85,349,020.71 85.35 million 91

Insight

Over the 5-year window, obligations for PIID 80JSC017C0001 are entirely concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This category accounts for $85.35 million across 91 awards, indicating a sustained and highly focused contracting pattern with no observed 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 = '80JSC017C0001'
    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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 85,349,020.71 85.35 million 91

Insight

Over the 5-year window, obligations for PIID 80JSC017C0001 are fully concentrated in PSC R425, Support- Professional: Engineering/Technical, with $85.35 million across 91 awards. This indicates sustained reliance on a single professional services category rather than a diversified mix of PSCs. The award volume suggests repeated procurement activity within the same service type, which may warrant further review of workload continuity and competition patterns.

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 = '80JSC017C0001'
    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 23,763,468.51 23.76 million 20
2022 25,430,767.21 25.43 million 24
2023 27,829,062.40 27.83 million 20
2024 8,556,623.58 8.56 million 19
2025 -230,900.99 -230.90 thousand 8

Insight

Obligations for PIID 80JSC017C0001 were concentrated in 2021–2023, increasing from $23.76 million across 20 awards in 2021 to a peak of $27.83 million across 20 awards in 2023. Activity then declined sharply to $8.56 million in 2024, with award volume only marginally lower at 19, indicating a reduction in dollar value rather than a major change in transaction count. In 2025, obligations were slightly negative (-$230.90 thousand) across 8 awards, consistent with net deobligations or downward adjustments in the current year.

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.