Vehicle Number

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

Procurement analysis for vehicle number under PIID 80KSC020D0023, showing 119 award actions and $135.92 million obligated over the last 10 years.

This page summarizes federal procurement activity for vehicle number associated with agency ID 8000 and PIID 80KSC020D0023. Over the last 10 years, the record shows $135,918,538.76 obligated across 119 award actions, with an average action value of $1,142,172.59.

Generated at 03/21/2026

Analysis period: Last 10 years

Obligation totals are based on the provided analysis window and reflect the exact total of $135,918,538.76, shown here as $135.92 million for readability.

Agency ID
8000
PIID
80KSC020D0023
Type
Vehicle
Total Obligated
135.92 million
135,918,538.76
Actions
119
Average Action Value
1,142,172.59

Overview

The procurement record for vehicle number under agency ID 8000 and PIID 80KSC020D0023 covers 119 award actions in the last 10 years. Total obligated amount is $135,918,538.76, with an average action value of $1,142,172.59. These figures provide a concise view of the contract activity captured on the FPDS Query page.

How to use this page

Use this page to review the scale and frequency of award actions tied to vehicle number for the selected PIID. The totals support basic trend analysis, comparison with related awards, and review of obligation concentration over the stated period.

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 = '80KSC020D0023'
    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 135,918,538.76 135.92 million 119

Insight

NASA (agency 8000) accounts for the full observed obligation base in this 10-year vehicle view, with $135.92 million across 119 awards under PIID 80KSC020D0023. This indicates complete concentration within a single agency and moderate award fragmentation across multiple actions. No distribution across additional agencies is evident in the provided rows.

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 = '80KSC020D0023'
        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 = '80KSC020D0023'
    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
541620 ENVIRONMENTAL CONSULTING SERVICES 135,918,538.76 135.92 million 119

Insight

Over the 10-year window, this vehicle’s obligations are fully concentrated in NAICS 541620, Environmental Consulting Services, with $135.92 million across 119 awards. This indicates a single-industry award pattern rather than a diversified NAICS distribution. The volume of awards suggests recurring use of the vehicle for the same service category over time.

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 = '80KSC020D0023'
    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
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 135,918,538.76 135.92 million 119

Insight

The vehicle is fully concentrated in PSC R408, Support- Professional: Program Management/Support, with $135.92 million obligated across 119 awards over the 10-year window. This indicates the contract vehicle has been used consistently for a single dominant service category rather than a diversified mix of PSCs. The award count suggests repeated tasking or ordering activity within the same support scope.

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 = '80KSC020D0023'
    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 11,669,521.73 11.67 million 6
2021 19,206,437.52 19.21 million 20
2022 21,440,410.39 21.44 million 15
2023 23,922,513.68 23.92 million 22
2024 24,690,530.75 24.69 million 27
2025 34,989,124.69 34.99 million 29

Insight

Obligations on PIID 80KSC020D0023 increased overall across the 2020–2025 period, rising from $11.67 million in 2020 to $34.99 million in 2025, with a notable step-up after 2024. Award activity also became more concentrated in the later years, increasing from 6 awards in 2020 to 29 awards in 2025. The largest annual obligation levels occurred in 2025, following sustained growth in both dollars and award count from 2021 through 2024.

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.