Vehicle Number

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

Analysis of vehicle number records for Agency 8000 under PIID 80GRC017C0008 over the last 5 years, showing 75 award actions and $180.44 million obligated.

This page summarizes procurement activity for the vehicle number entity associated with Agency 8000 and PIID 80GRC017C0008 during the last 5 years. The record set includes 75 award actions with total obligations of $180,436,813.04 and an average action value of $2,405,824.17.

Generated at 03/21/2026

Analysis period: Last 5 years

Dollar amounts are shown as reported, with the readable total rounded from the exact obligated amount.

Agency ID
8000
PIID
80GRC017C0008
Type
Vehicle
Total Obligated
180.44 million
180,436,813.04
Actions
75
Average Action Value
2,405,824.17

Overview

The analysis window covers the last 5 years and identifies 75 award actions tied to vehicle number under Agency 8000 and PIID 80GRC017C0008. Total obligated funding is $180,436,813.04, which rounds to $180.44 million, and the average action value is $2,405,824.17. These figures describe the recorded obligation activity for the specified vehicle identifier.

How to use this page

Use this page to review obligation totals and award action volume associated with the vehicle number record. The data can support FPDS-style review by showing the scale of activity across the selected period, along with the average value per action. It is limited to the inputs provided for Agency 8000 and PIID 80GRC017C0008.

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 = '80GRC017C0008'
    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 180,436,813.04 180.44 million 75

Insight

Over the 5-year window, obligations for PIID 80GRC017C0008 are fully concentrated within NASA (Agency ID 8000), with no other agencies represented in the provided rows. NASA accounts for $180.44 million across 75 awards, indicating sustained vehicle activity under a single agency. This distribution suggests a highly focused award base rather than cross-agency use.

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 = '80GRC017C0008'
        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 = '80GRC017C0008'
    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
336419 OTHER GUIDED MISSILE AND SPACE VEHICLE PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 180,436,813.04 180.44 million 75

Insight

Over the 5-year window, obligations for vehicle PIID 80GRC017C0008 are fully concentrated in NAICS 336419, Other Guided Missile and Space Vehicle Parts and Auxiliary Equipment Manufacturing. This NAICS accounts for $180.44 million across 75 awards, indicating a single-industry procurement profile with no evidence of diversification in the provided data. The volume of awards suggests repeated activity within this specialized manufacturing category rather than a broad distribution across multiple NAICS 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 = '80GRC017C0008'
    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
1675 SPACE VEHICLE COMPONENTS 180,436,813.04 180.44 million 75

Insight

Obligations for this vehicle are concentrated entirely in PSC 1675, Space Vehicle Components, with $180.44 million across 75 awards over the 5-year window. This indicates a highly focused procurement profile tied to a single product category rather than a broad mix of supplies or services. The award count suggests repeated procurement activity within the same PSC, supporting a pattern of sustained requirement execution.

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 = '80GRC017C0008'
    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 34,178,014.17 34.18 million 11
2022 38,439,638.58 38.44 million 14
2023 34,775,273.45 34.78 million 14
2024 33,124,174.55 33.12 million 20
2025 39,919,712.29 39.92 million 16

Insight

Obligations for PIID 80GRC017C0008 remained in a relatively narrow band over the five-year window, ranging from 33.12 million in 2024 to 39.92 million in 2025. Award activity was more variable than obligated dollars, with counts rising from 11 in 2021 to a peak of 20 in 2024 before easing to 16 in 2025. The pattern suggests stable funding levels with increased transaction frequency in 2024 rather than a sustained upward or downward obligation trend.

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.