Vehicle Number

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

Federal procurement summary for vehicle number 80JSC018D0006 under agency ID 8000, covering obligations and award activity over the last 10 years.

This page summarizes procurement activity tied to vehicle number 80JSC018D0006 for agency ID 8000 across the last 10 years. The record shows 76 award actions with total obligations of 48.13 million dollars and an average action value of 633,238.38.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on the provided readable obligation figure of 48.13 million and exact obligation amount of 48,126,117.05.

Agency ID
8000
PIID
80JSC018D0006
Type
Vehicle
Total Obligated
48.13 million
48,126,117.05
Actions
76
Average Action Value
633,238.38

Overview

Over the last 10 years, vehicle number 80JSC018D0006 shows 76 award actions tied to agency ID 8000. Total obligated dollars reached 48,126,117.05, which reads as 48.13 million in rounded form. The average action value was 633,238.38, indicating a recurring stream of awards rather than a single isolated obligation.

How to use this page

Use this page to review obligation totals and award activity associated with vehicle number 80JSC018D0006. The figures support a quick scan of long-term procurement volume, action frequency, and average action size within the 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 = '80JSC018D0006'
    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 48,126,117.05 48.13 million 76

Insight

Within the 10-year window, NASA (agency ID 8000) accounts for all reported obligations associated with vehicle PIID 80JSC018D0006 in this section, totaling $48.13 million across 76 awards. This indicates a highly concentrated obligation profile with no other agencies represented in the provided rows. The distribution suggests the vehicle has been used exclusively, or nearly exclusively, by a single agency over the period reviewed.

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 = '80JSC018D0006'
        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 = '80JSC018D0006'
    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
562910 REMEDIATION SERVICES 48,126,117.05 48.13 million 76

Insight

Obligations under PIID 80JSC018D0006 are fully concentrated in NAICS 562910, Remediation Services, with $48.13 million obligated across 76 awards over the 10-year window. This indicates a single-NAICS award profile for the vehicle and no observable diversification in obligated activity within the provided data. The award count suggests repeated use of the vehicle for the same service category rather than broad distribution across multiple industries.

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 = '80JSC018D0006'
    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
F999 OTHER ENVIRONMENTAL SERVICES 48,126,117.05 48.13 million 76

Insight

Within the 10-year window for vehicle PIID 80JSC018D0006, obligations are fully concentrated in PSC F999, Other Environmental Services. This PSC accounts for $48.13 million across 76 awards, indicating repeated use of the same service category rather than a diversified PSC mix. The distribution suggests sustained reliance on a single environmental services code 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 = '80JSC018D0006'
    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
2018 11,655,336.00 11.66 million 5
2019 9,021,109.00 9.02 million 13
2020 8,214,652.00 8.21 million 15
2021 7,836,307.09 7.84 million 15
2022 8,118,291.54 8.12 million 14
2023 3,356,248.21 3.36 million 12
2024 -75,826.79 -75.83 thousand 2

Insight

For PIID 80JSC018D0006 under Agency 8000, obligations were highest in 2018 at $11.66 million with 5 awards, then generally declined through 2023, reaching $3.36 million. Award volume increased and stayed elevated from 2019 to 2023, ranging from 12 to 15 awards annually, indicating smaller average awards over time relative to 2018. In 2024, obligations were slightly negative at -$75.83 thousand with only 2 awards, suggesting minimal activity and possible deobligation or closeout adjustments.

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.