Vehicle Number

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

Federal procurement summary for vehicle number 80KSC020D0023 under Agency ID 8000, showing obligations and award activity over the last 5 years.

This page summarizes award activity for vehicle number 80KSC020D0023 during the last 5 years. Total obligations are $124.25 million across 113 award actions, with an average action value of $1,099,548.82.

Generated at 03/21/2026

Analysis period: Last 5 years

Dollar figures are based on the provided readable and exact totals for the selected analysis window.

Agency ID
8000
PIID
80KSC020D0023
Type
Vehicle
Total Obligated
124.25 million
124,249,017.03
Actions
113
Average Action Value
1,099,548.82

Overview

For the last 5 years, vehicle number 80KSC020D0023 records $124,249,017.03 in total obligated value, which is presented as $124.25 million for readability. The record includes 113 award actions, producing an average action value of $1,099,548.82. This page is tied to Agency ID 8000 and focuses on the procurement history for this specific vehicle identifier.

How to use this page

Use this page to review the scale and frequency of award activity associated with vehicle number 80KSC020D0023. The combination of total obligations, action count, and average action value provides a compact view of procurement volume across the selected 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 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 124,249,017.03 124.25 million 113

Insight

Over the 5-year window, this vehicle is wholly concentrated within NASA (Agency ID 8000), with 113 awards totaling $124.25 million. The obligation profile indicates single-agency usage rather than distribution across multiple agencies, suggesting the vehicle has been used as a NASA-specific procurement instrument. This concentration is significant for assessing agency-level reliance and exposure under PIID 80KSC020D0023.

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 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 = '80KSC020D0023'
    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
541620 ENVIRONMENTAL CONSULTING SERVICES 124,249,017.03 124.25 million 113

Insight

Obligations on PIID 80KSC020D0023 are fully concentrated in NAICS 541620, Environmental Consulting Services, with 124.25 million obligated across 113 awards over the 5-year window. This indicates a single-category vehicle with no observable NAICS diversification in the provided data. The award count suggests repeated use within the same service line rather than broad distribution across multiple industry codes.

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 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
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 124,249,017.03 124.25 million 113

Insight

Over the 5-year window, obligations for this vehicle are fully concentrated in PSC R408, SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT. This PSC accounts for $124.25 million across 113 awards, indicating a sustained and highly focused use of the vehicle for program management/support services. With no other PSCs listed in the provided rows, there is no evidence here of PSC diversification within this section.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 each year from $19.21 million in 2021 to $34.99 million in 2025, indicating a sustained upward trend over the 5-year window. Award activity was somewhat variable, declining from 20 awards in 2021 to 15 in 2022, then rising to 29 by 2025, suggesting increasing transaction volume alongside higher funding. The largest year-over-year obligation increase occurred in 2025, when obligations rose by roughly $10.30 million from 2024, which materially shifted the contract’s annual funding profile.

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.