Vehicle Number

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

Vehicle number 80GRC018C0028 under agency 8000 shows obligation and action history for the last 5 years.

This page summarizes procurement activity for vehicle number 80GRC018C0028 over the last 5 years. The record shows 57 award actions and total obligated dollars of 29.02 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Dollar values are based on the provided exact total of 29017557.88 and the stated average action value of 509079.96.

Agency ID
8000
PIID
80GRC018C0028
Type
Vehicle
Total Obligated
29.02 million
29,017,557.88
Actions
57
Average Action Value
509,079.96

Overview

For agency 8000, vehicle number 80GRC018C0028 records 57 award actions in the last 5 years. Total obligated dollars equal 29017557.88, or 29.02 million when rounded to two decimals, with an average action value of 509079.96. This page presents the procurement history for the vehicle identifier as reported.

How to use this page

Use this page to review the activity profile tied to vehicle number 80GRC018C0028 and to compare action volume with obligated value. The figures shown are limited to the provided analysis window and should be used as a record summary rather than a contract description.

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 = '80GRC018C0028'
    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 29,017,557.88 29.02 million 57

Insight

Within the 5-year window, all reported obligations for PIID 80GRC018C0028 are concentrated in NASA, with $29.02 million across 57 awards. This indicates a single-agency award profile and no diversification across agencies in the provided data. The volume of awards suggests recurring obligation activity rather than a one-time transaction.

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 = '80GRC018C0028'
        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 = '80GRC018C0028'
    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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 29,017,557.88 29.02 million 57

Insight

Over the 5-year window, obligations for vehicle 80GRC018C0028 are fully concentrated in NAICS 541715, with $29.02 million across 57 awards. This indicates a narrow procurement profile tied to research and development in the physical, engineering, and life sciences, with no evidence in the provided data of diversification across other NAICS codes. The repeated award activity suggests sustained use of this NAICS rather than a one-time obligation pattern.

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 = '80GRC018C0028'
    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
AR32 R&D- SPACE: FLIGHT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 29,017,557.88 29.02 million 57

Insight

Over the 5-year window, obligations for vehicle 80GRC018C0028 are fully concentrated in PSC AR32, R&D - Space: Flight (Applied Research/Exploratory Development). This PSC accounts for $29.02 million across 57 awards, indicating a sustained and narrowly focused funding pattern rather than a diversified PSC mix.

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 = '80GRC018C0028'
    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 9,174,126.00 9.17 million 17
2022 8,542,759.26 8.54 million 14
2023 8,799,934.29 8.80 million 14
2024 2,500,738.33 2.50 million 12

Insight

Obligations for PIID 80GRC018C0028 were relatively stable from 2021 through 2023, ranging from $8.54 million to $9.17 million across 14 to 17 awards per year. In 2024, obligated dollars declined sharply to $2.50 million, while award count remained comparatively elevated at 12, indicating a lower average obligation per award. Over the 5-year window, activity is concentrated in the earlier years, with 2024 representing a notable drop in financial volume rather than a collapse in award frequency.

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.