Vehicle Number

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

Vehicle number record for PIID 80GRC020D0003 under agency 8000, showing 91 award actions and $297.05 million obligated over the last 10 years.

This page summarizes the vehicle number entry tied to PIID 80GRC020D0003 for agency 8000 across the last 10 years. Total obligated value is $297,045,265.34 across 91 award actions, for an average action value of $3,264,233.69.

Generated at 03/21/2026

Analysis period: Last 10 years

Obligated amounts are shown as reported for the selected analysis window and may reflect rounding between readable and exact totals.

Agency ID
8000
PIID
80GRC020D0003
Type
Vehicle
Total Obligated
297.05 million
297,045,265.34
Actions
91
Average Action Value
3,264,233.69

Overview

The vehicle number record is associated with PIID 80GRC020D0003 and agency 8000. Over the last 10 years, the record includes 91 award actions with total obligated value of $297,045,265.34, or $297.05 million when rounded. The average action value is $3,264,233.69.

How to use this page

Use this page to review the award action pattern tied to the vehicle number over the selected period. The totals support basic comparison of obligation volume and action frequency for this PIID within agency 8000.

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 = '80GRC020D0003'
    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 297,045,265.34 297.05 million 91

Insight

Over the 10-year window, all reported obligation activity for PIID 80GRC020D0003 is concentrated in a single agency: the National Aeronautics and Space Administration. NASA accounts for $297.05 million across 91 awards, indicating fully concentrated obligation distribution within the provided data. This level of concentration suggests the vehicle has been used exclusively or overwhelmingly for NASA requirements over the period.

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 = '80GRC020D0003'
        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 = '80GRC020D0003'
    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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 297,045,265.34 297.05 million 91

Insight

Across the 10-year window, obligations for vehicle PIID 80GRC020D0003 are fully concentrated in NAICS 541715, which accounts for the entire reported obligation base of $297.05 million across 91 awards. This indicates a highly focused procurement profile with no diversification across additional NAICS codes in the provided data. The award volume suggests repeated use of this scientific research and development classification 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 = '80GRC020D0003'
    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 297,045,265.34 297.05 million 91

Insight

Over the 10-year window, obligations under PIID 80GRC020D0003 are fully concentrated in PSC R408, SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT. This PSC accounts for $297.05 million across 91 awards, indicating sustained use of the vehicle for program management and support services rather than a diversified PSC mix. The concentration suggests the vehicle has been used primarily for a single service category within agency 8000.

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 = '80GRC020D0003'
    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
2019 0.00 0.00 1
2020 46,969,957.50 46.97 million 8
2021 46,735,166.20 46.74 million 13
2022 51,225,639.45 51.23 million 14
2023 53,659,857.16 53.66 million 13
2024 58,695,473.97 58.70 million 22
2025 39,759,171.06 39.76 million 20

Insight

Obligations for PIID 80GRC020D0003 were minimal in 2019, then increased sharply in 2020 and remained consistently elevated through 2025, ranging from $46.74 million to $58.70 million annually. The highest annual obligation occurred in 2024 at $58.70 million across 22 awards, followed by a decline in 2025 to $39.76 million, though award volume remained high at 20. Award counts generally increased over the period, indicating broader distribution of obligations across more actions rather than concentration in a single 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.