Vehicle Number

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

Federal procurement analysis for vehicle number under agency ID 8000 and PIID 80GRC019D0012 over the last 5 years.

This page summarizes award activity for vehicle number in the last 5 years, based on agency ID 8000 and PIID 80GRC019D0012. The record shows 54 award actions totaling $724.49 million, with an average action value of $13.42 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the readable amount of $724.49 million and the exact obligated value of $724,488,711.2 across 54 actions.

Agency ID
8000
PIID
80GRC019D0012
Type
Vehicle
Total Obligated
724.49 million
724,488,711.20
Actions
54
Average Action Value
13,416,457.61

Overview

The procurement record for vehicle number under agency ID 8000 and PIID 80GRC019D0012 covers 54 award actions over the last 5 years. Total obligated value is $724,488,711.2, shown here as $724.49 million for readability. The average action value is $13,416,457.61.

How to use this page

Use this page to review the scale and frequency of award activity tied to vehicle number for the specified PIID and agency. The figures support quick comparison across actions, obligations, and average action value within the analysis window.

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 = '80GRC019D0012'
    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 724,488,711.20 724.49 million 54

Insight

Over the past 5 years, obligations for vehicle PIID 80GRC019D0012 are fully concentrated within a single agency: NASA, which accounts for 100% of reported obligations in this section. NASA obligated $724.49 million across 54 awards, indicating repeated use of this vehicle rather than reliance on a one-time action. This pattern suggests sustained agency-level utilization and a relatively concentrated spending profile.

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 = '80GRC019D0012'
        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 = '80GRC019D0012'
    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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 724,488,711.20 724.49 million 54

Insight

Over the past 5 years, this vehicle’s obligations are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. The category accounts for $724.49 million across 54 awards, indicating a highly specialized and narrowly distributed spend pattern. This concentration suggests the vehicle is used primarily for a single industrial base segment rather than a broad mix of NAICS sectors.

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 = '80GRC019D0012'
    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
AR15 SPACE R&D SVCS; SPACE FLIGHT, RESEARCH & SUPPORTING ACTIVITIES; R&D FACILITIES & MAJ EQUIP 724,488,711.20 724.49 million 54

Insight

Over the 5-year window, obligations for PIID 80GRC019D0012 are fully concentrated in PSC AR15, totaling $724.49 million across 54 awards. This indicates a highly focused procurement pattern centered on space R&D services, space flight and supporting activities, and related R&D facilities and major equipment. No other PSCs are provided for this period, so the available data show no diversification within this vehicle.

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 = '80GRC019D0012'
    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 80,640,094.20 80.64 million 10
2022 195,142,074.00 195.14 million 14
2023 218,898,966.00 218.90 million 8
2024 139,485,865.00 139.49 million 7
2025 90,321,712.00 90.32 million 15

Insight

Obligations under PIID 80GRC019D0012 increased from 80.64 million in 2021 to a peak of 218.90 million in 2023, then declined to 139.49 million in 2024 and 90.32 million in 2025. Award activity was uneven across the period, ranging from 7 awards in 2024 to 15 awards in 2025, with the highest obligation year (2023) recorded on only 8 awards. This pattern indicates a moderate concentration of dollars in 2022–2024, followed by a recent pullback in obligated value despite higher award count in 2025.

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.