Vehicle Number

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

Federal procurement analysis for vehicle number 80LARC23DA003 under agency 8000 over the last 10 years.

This page summarizes award activity for vehicle number 80LARC23DA003 within agency 8000 over the last 10 years. The record shows 62 award actions with total obligations of $346.25 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and may differ by reporting method; exact obligated amount is $346,254,050.

Agency ID
8000
PIID
80LARC23DA003
Type
Vehicle
Total Obligated
346.25 million
346,254,050.00
Actions
62
Average Action Value
5,584,742.74

Overview

Vehicle number 80LARC23DA003 has 62 recorded award actions in the last 10 years for agency 8000. Total obligated value is $346,254,050, with an average action value of $5,584,742.74. The figures provide a compact view of procurement activity tied to this vehicle identifier within the stated analysis window. They support basic comparison across similar FPDS query pages using action count, total obligations, and average action value.

How to use this page

Use this page to review the scale and frequency of award activity associated with vehicle number 80LARC23DA003. The combination of total obligated value and award count helps show whether activity is concentrated in fewer large actions or spread across multiple awards. For analysis, compare the average action value against the total obligations and count to understand procurement pattern over time. The page is limited to the provided agency ID, PIID, and 10-year 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 = '80LARC23DA003'
    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 346,254,050.00 346.25 million 62

Insight

For PIID 80LARC23DA003, obligations over the 10-year window are fully concentrated in a single top agency: NASA, with $346.25 million across 62 awards. This indicates a highly concentrated funding profile with no observed distribution across other agencies in the provided data. The award count suggests repeated activity under the vehicle, but all reported obligation volume remains within one agency.

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 = '80LARC23DA003'
        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 = '80LARC23DA003'
    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) 346,254,050.00 346.25 million 62

Insight

Over the 10-year window, obligations under PIID 80LARC23DA003 are fully concentrated in NAICS 541715, with $346.25 million across 62 awards. This indicates a highly focused procurement profile tied to research and development in the physical, engineering, and life sciences. No other NAICS codes are present in the provided data, so there is no visible diversification across industry sectors in this set.

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 = '80LARC23DA003'
    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
AR12 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; APPLIED RESEARCH 346,254,050.00 346.25 million 62

Insight

Obligations under PIID 80LARC23DA003 are fully concentrated in PSC AR12, with $346.25 million across 62 awards over the 10-year window. This indicates a highly focused award profile centered on space R&D and supporting activities, rather than a diversified mix of product or service categories. The volume of awards suggests repeated use of the same PSC for 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 = '80LARC23DA003'
    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
2023 107,501,472.00 107.50 million 14
2024 116,591,723.00 116.59 million 25
2025 122,160,855.00 122.16 million 23

Insight

Obligations on PIID 80LARC23DA003 increased each year across the period provided, rising from $107.50 million in 2023 to $116.59 million in 2024 and $122.16 million in 2025. Award activity was highest in 2024 and 2025, with 25 and 23 awards respectively, compared with 14 awards in 2023, indicating a larger number of actions over time alongside higher annual funding. The pattern suggests growing concentration in this vehicle through both increased obligation volume and elevated award counts.

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.