Vehicle Number

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

Procurement analysis page for vehicle number 80LARC17C0003 under agency 8000, covering award activity over the last 10 years.

This page summarizes federal procurement activity for vehicle number 80LARC17C0003 across the last 10 years. The record shows 126 award actions with total obligated amount of 384.52 million dollars and an average action value of 3,051,778.04.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and the exact obligated amount of 384,524,033.01 dollars.

Agency ID
8000
PIID
80LARC17C0003
Type
Vehicle
Total Obligated
384.52 million
384,524,033.01
Actions
126
Average Action Value
3,051,778.04

Overview

The procurement record for vehicle number 80LARC17C0003 shows 126 award actions during the last 10 years. Total obligated funding is 384,524,033.01 dollars, with an average action value of 3,051,778.04 dollars. This page is intended to support review of award activity tied to agency 8000.

How to use this page

Use this page to review the scale and frequency of award activity associated with vehicle number 80LARC17C0003. The figures provide a concise starting point for comparing obligation levels, action counts, and average action values across the selected period.

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 = '80LARC17C0003'
    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 384,524,033.01 384.52 million 126

Insight

NATIONAL AERONAUTICS AND SPACE ADMINISTRATION accounts for the full observed obligation in this 10-year window, with $384.52 million across 126 awards. This indicates complete concentration within a single agency rather than a distributed vehicle footprint across multiple agencies. The award count suggests repeated use of the vehicle at NASA, but no cross-agency diversification is present 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 = '80LARC17C0003'
        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 = '80LARC17C0003'
    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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 384,524,033.01 384.52 million 126

Insight

Over the 10-year window for PIID 80LARC17C0003, obligations are fully concentrated in NAICS 541712, with $384.52 million across 126 awards. This indicates a single-dominant industry profile for the vehicle, with no evidence in the provided data of diversification across other NAICS codes. The volume of awards suggests repeated procurement activity within the same research and development classification.

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 = '80LARC17C0003'
    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
AJ96 R&D- GENERAL SCIENCE/TECHNOLOGY: OTHER (MANAGEMENT/SUPPORT) 384,524,033.01 384.52 million 126

Insight

Over the 10-year window, obligations for vehicle 80LARC17C0003 are fully concentrated in PSC AJ96, with $384.52 million across 126 awards. This indicates a single dominant product/service classification rather than a diversified mix of PSCs. The award volume suggests repeated use of the same classification over time, but no cross-PSC distribution is present in the provided data.

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 = '80LARC17C0003'
    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
2017 27,658,531.00 27.66 million 19
2018 66,117,945.00 66.12 million 23
2019 64,391,134.53 64.39 million 18
2020 73,321,759.02 73.32 million 22
2021 74,430,242.00 74.43 million 16
2022 69,328,430.00 69.33 million 15
2023 9,282,210.00 9.28 million 12
2025 -6,218.54 -6.22 thousand 1

Insight

Obligations for PIID 80LARC17C0003 were concentrated in 2018–2022, when annual totals remained between $64.39 million and $74.43 million and award counts ranged from 15 to 23. The highest funding level occurred in 2021 at $74.43 million across 16 awards, while 2017 was notably lower at $27.66 million. Activity dropped sharply in 2023 to $9.28 million with 12 awards, followed by a negligible negative obligation in 2025 of $6.22 thousand across 1 award, indicating a pronounced decline after the earlier five-year plateau.

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.