Vehicle Number

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

Federal procurement analysis for vehicle number 80ARC021D0001 under Agency ID 8000, covering the last 5 years.

This page summarizes award activity for vehicle number 80ARC021D0001 over the last 5 years. The record shows 83 award actions and total obligations of $131.62 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Total obligated exact amount is $131,622,106.94, with an average action value of $1,585,808.52.

Agency ID
8000
PIID
80ARC021D0001
Type
Vehicle
Total Obligated
131.62 million
131,622,106.94
Actions
83
Average Action Value
1,585,808.52

Overview

The procurement record for vehicle number 80ARC021D0001 shows 83 award actions during the last 5 years. Total obligations reached $131,622,106.94, with an average action value of $1,585,808.52. These figures reflect the observed activity in the available FPDS analysis window.

How to use this page

Use this page to review the obligation pattern and award volume associated with vehicle number 80ARC021D0001. The values on this page are limited to the provided entity, agency identifier 8000, and the last 5 years of recorded activity.

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 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 131,622,106.94 131.62 million 83

Insight

Over the past 5 years, obligations for PIID 80ARC021D0001 are fully concentrated within a single agency: the National Aeronautics and Space Administration. NASA accounts for $131.62 million across 83 awards, indicating all recorded funding in this window is tied to one agency and one vehicle. This distribution reflects complete agency concentration with no evidence of obligation sharing across other agencies in the provided data.

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 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 = '80ARC021D0001'
    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) 131,622,106.94 131.62 million 83

Insight

For PIID 80ARC021D0001 over the 5-year window, obligations 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.62 million across 83 awards, indicating a consistent obligation pattern centered on a single R&D classification. No other NAICS categories are represented in the provided rows, so the observed distribution is entirely concentrated in this code.

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 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
AR14 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; R&D ADMINISTRATIVE EXPENSES 131,622,106.94 131.62 million 83

Insight

Over the 5-year window, obligations under PIID 80ARC021D0001 are concentrated in PSC AR14, which accounts for $131.62 million across 83 awards. This indicates sustained use of the vehicle for space R&D services and related supporting activities, with funding spread across multiple awards rather than a single large obligation. No other PSCs are provided in this section, so the observed distribution is entirely concentrated in AR14.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 for PIID 80ARC021D0001 were uneven across the 5-year window, ranging from $18.89 million in 2024 to $33.31 million in 2021. Activity was highest in 2021 and remained elevated in 2023 and 2025, while 2022 and 2024 were lower-obligation years; award counts generally followed a similar pattern, declining from 21 in 2021 to 14 in 2023 and 2024 before increasing to 18 in 2025. Overall, the vehicle shows moderate year-to-year variability rather than a steady upward or downward 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.