Vehicle Number

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

Procurement profile for vehicle number under agency ID 8000 and PIID 80ARC021D0001, showing 10 years of award activity and obligations.

This page summarizes federal procurement activity for vehicle number over the last 10 years under agency ID 8000 and PIID 80ARC021D0001. The record includes 85 award actions with total obligations of $131.69 million and an average action value of $1,549,346.61.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and reflect a readable total of $131.69 million and an exact total of $131,694,461.92.

Agency ID
8000
PIID
80ARC021D0001
Type
Vehicle
Total Obligated
131.69 million
131,694,461.92
Actions
85
Average Action Value
1,549,346.61

Overview

Over the last 10 years, vehicle number has 85 recorded award actions tied to PIID 80ARC021D0001. The total obligated amount is $131,694,461.92, which rounds to $131.69 million, and the average action value is $1,549,346.61.

How to use this page

Use this page to review the scale and frequency of procurement activity associated with vehicle number. The figures support a quick check of total obligation, action count, and average action value for the selected agency and award identifier.

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 = '80ARC021D0001'
    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 131,694,461.92 131.69 million 85

Insight

Over the 10-year window, obligations for PIID 80ARC021D0001 are fully concentrated in National Aeronautics and Space Administration, which accounts for $131.69 million across 85 awards. This indicates a single-agency funding profile with no observed distribution across other agencies in the provided data. The award count suggests repeated use of the vehicle within NASA rather than a one-time obligation pattern.

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 = '80ARC021D0001'
        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 = '80ARC021D0001'
    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) 131,694,461.92 131.69 million 85

Insight

Over the 10-year window, obligations under PIID 80ARC021D0001 are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This category accounts for $131.69 million across 85 awards, indicating a consistently focused procurement profile rather than a diversified NAICS mix.

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 = '80ARC021D0001'
    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
AR14 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; R&D ADMINISTRATIVE EXPENSES 131,694,461.92 131.69 million 85

Insight

Obligations for PIID 80ARC021D0001 are fully concentrated in PSC AR14 over the 10-year window, with $131.69 million across 85 awards. This indicates a highly focused procurement profile centered on space R&D services and related supporting activities, with no other PSCs reflected in the provided data. The award volume suggests repeated use of this vehicle for the same general requirement set rather than a broad distribution of buying categories.

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 = '80ARC021D0001'
    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
2020 72,354.98 72.35 thousand 2
2021 33,314,899.95 33.31 million 21
2022 23,364,809.26 23.36 million 16
2023 31,145,689.91 31.15 million 14
2024 18,890,031.56 18.89 million 14
2025 24,906,676.26 24.91 million 18

Insight

Obligations under PIID 80ARC021D0001 are highly concentrated in FY 2021 through FY 2025, with annual obligations ranging from $18.89 million to $33.31 million and award counts from 14 to 21. FY 2020 is a clear outlier at just $72.35 thousand across 2 awards, indicating minimal activity before the obligation surge in FY 2021. After the FY 2021 peak, annual obligations declined in FY 2022 and FY 2024, then rebounded in FY 2023 and FY 2025, while award counts remained relatively stable in the mid-teens to low twenties.

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.