Vehicle Number

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

Analyst summary for vehicle number 80JSC017C0001 under Agency ID 8000 over the last 10 years.

This page summarizes federal procurement activity for vehicle number 80JSC017C0001 within Agency ID 8000 across the last 10 years. The record shows 155 award actions totaling $154.40 million, with an average action value of $996,157.95.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may include rounded readable amounts alongside the exact obligated figure of $154,404,481.65.

Agency ID
8000
PIID
80JSC017C0001
Type
Vehicle
Total Obligated
154.40 million
154,404,481.65
Actions
155
Average Action Value
996,157.95

Overview

Over the last 10 years, vehicle number 80JSC017C0001 is associated with 155 award actions and total obligated value of $154,404,481.65. The average action value across the period is $996,157.95. This page is intended to support review of procurement volume and obligation level for the identifier as provided.

How to use this page

Use this page to review the scale of award activity tied to vehicle number 80JSC017C0001 and to compare action count against total obligations. The figures are presented for analyst reference and are limited to the supplied agency ID, PIID, and analysis window.

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 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 154,404,481.65 154.40 million 155

Insight

Within the 10-year window, National Aeronautics and Space Administration accounts for the full reported obligation associated with this vehicle, totaling $154.40 million across 155 awards. Obligations are fully concentrated in a single agency, indicating no observed cross-agency distribution in the provided data. The award count suggests repeated use of the vehicle within NASA rather than reliance on a small number of high-dollar 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 = '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 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 = '80JSC017C0001'
    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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 154,404,481.65 154.40 million 155

Insight

Over the 10-year window, obligations are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology), with $154.40 million across 155 awards. This indicates the vehicle’s activity is narrowly focused and consistently used for this single research and development category. No other NAICS codes are reflected in the provided data, so there is no observable diversification within 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 = '80JSC017C0001'
    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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 154,404,481.65 154.40 million 155

Insight

Obligations under PIID 80JSC017C0001 are fully concentrated in PSC R425, Support- Professional: Engineering/Technical, with $154.40 million obligated across 155 awards over the 10-year window. This indicates a sustained procurement pattern focused on engineering and technical support services rather than a diversified PSC mix. The award count suggests repeated use of this service category across multiple actions, but no additional PSCs are present to indicate any broader distribution.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2017 5,177,154.71 5.18 million 7
2018 21,346,110.34 21.35 million 17
2019 21,736,245.12 21.74 million 16
2020 20,795,950.77 20.80 million 24
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 2018–2023, ranging from $20.80 million to $27.83 million annually, with award counts generally between 16 and 24. The series peaks in 2023 at $27.83 million, then drops sharply in 2024 to $8.56 million and turns slightly negative in 2025 at -$230.90 thousand, indicating a material decline in recent annual funding activity. The distribution suggests a stable higher-obligation period followed by a pronounced contraction at the end of the 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.