Vehicle Number

Vehicle Number 8000 / 80LARC20D0006 Federal Contract Action Summary (Last Year)

Vehicle number for PIID 80LARC20D0006 under agency 8000, showing six award actions and $16.38 million obligated in the last full year.

This page summarizes the vehicle number tied to PIID 80LARC20D0006 for agency 8000 over the last full year. The record shows 6 award actions with total obligations of $16,375,589 and an average action value of $2,729,264.83.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the last full year and are based on the provided obligated totals and action count.

Agency ID
8000
PIID
80LARC20D0006
Type
Vehicle
Total Obligated
16.38 million
16,375,589.00
Actions
6
Average Action Value
2,729,264.83

Overview

The vehicle number record for PIID 80LARC20D0006 under agency 8000 shows activity concentrated in the last full year. Total obligations reached $16,375,589 across 6 award actions, which results in an average action value of $2,729,264.83. This provides a compact view of award volume and funding level for the vehicle.

How to use this page

Use this page to identify the vehicle-level obligation total, action count, and average action value for the specified PIID. It is useful for comparing award activity over the last full year and for linking the vehicle record to the broader procurement history for agency 8000.

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 = '80LARC20D0006'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 16,375,589.00 16.38 million 6

Insight

Within the 1-year window, all reported obligations for PIID 80LARC20D0006 are concentrated in a single agency: NASA (Agency ID 8000). NASA accounts for $16.38 million across 6 awards, indicating a fully concentrated obligation pattern with no cross-agency distribution in the provided data. This suggests the vehicle is being used exclusively, or nearly exclusively, by NASA over the period reviewed.

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 = '80LARC20D0006'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 = '80LARC20D0006'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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) 16,375,589.00 16.38 million 6

Insight

Obligations under vehicle 80LARC20D0006 in the past year are concentrated entirely in NAICS 541715, with 6 awards totaling $16.38 million. This indicates a single-industry profile for the vehicle, with no diversification across other NAICS codes in the provided period. The concentration suggests the vehicle is being used primarily for research and development services in the physical, engineering, and life sciences.

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 = '80LARC20D0006'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
AR21 R&D- SPACE: SCIENCE/APPLICATIONS (BASIC RESEARCH) 16,375,589.00 16.38 million 6

Insight

Obligations under PIID 80LARC20D0006 in the 1-year window are fully concentrated in PSC AR21, R&D–Space: Science/Applications (Basic Research), with $16.38 million across 6 awards. This indicates a narrow spend profile with no observable diversification across other PSCs in the provided data. The award activity suggests repeated obligational action within a single research-oriented category rather than a broad mix of procurement types.

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 = '80LARC20D0006'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 16,375,589.00 16.38 million 6

Insight

For the 1-year window, PIID 80LARC20D0006 under agency 8000 shows $16.38 million in obligated value across 6 awards in 2025. The activity is concentrated in a single year within the available period, indicating a limited but material level of recent obligation. With only one year observed, no multi-year trend can be assessed from this query result.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.