Vehicle Number

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

Analysis of vehicle number for PIID 80JSC022DA003 at Agency ID 8000 over the last 5 years shows 116 award actions and $327.66 million obligated.

This page summarizes procurement activity for vehicle number under PIID 80JSC022DA003 for Agency ID 8000 during the last 5 years. The record shows 116 award actions with total obligations of $327,663,660.98 and an average action value of $2,824,686.73.

Generated at 03/21/2026

Analysis period: Last 5 years

Amounts are shown in both readable and exact form, and the analysis window covers the last 5 years only.

Agency ID
8000
PIID
80JSC022DA003
Type
Vehicle
Total Obligated
327.66 million
327,663,660.98
Actions
116
Average Action Value
2,824,686.73

Overview

The procurement record for vehicle number under PIID 80JSC022DA003 reflects 116 award actions in the last 5 years. Total obligated amount is $327,663,660.98, with an average action value of $2,824,686.73. These figures describe the observed obligation activity for the identified vehicle record and agency context.

How to use this page

Use this page to review the scale and frequency of obligation activity associated with vehicle number for Agency ID 8000. The action count and obligated totals support basic monitoring, comparison, and downstream FPDS review within the stated analysis 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 = '80JSC022DA003'
    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 327,663,660.98 327.66 million 116

Insight

Within the 5-year window, obligations associated with vehicle PIID 80JSC022DA003 are fully concentrated in the National Aeronautics and Space Administration (agency ID 8000). NASA accounts for $327.66 million across 116 awards, indicating a single-agency funding profile with no diversification across other agencies in the provided data. This concentration suggests the vehicle is used exclusively or predominantly for NASA procurement activity in this period.

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 = '80JSC022DA003'
        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 = '80JSC022DA003'
    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) 327,663,660.98 327.66 million 116

Insight

For PIID 80JSC022DA003 over the 5-year window, NAICS 541715 accounts for all reported obligations in this section, totaling $327.66 million across 116 awards. This indicates complete concentration in research and development services within the physical, engineering, and life sciences. The repeated award activity suggests sustained procurement within a single NAICS category rather than distribution across multiple industries.

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 = '80JSC022DA003'
    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
AR11 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH 327,663,660.98 327.66 million 116

Insight

Obligations under PIID 80JSC022DA003 are fully concentrated in PSC AR11, which accounts for $327.66 million across 116 awards over the 5-year window. This indicates a highly focused procurement profile centered on space R&D services and related supporting activities, with no evidence of PSC diversification in the provided data. The award count suggests repeated contracting activity within a single PSC category rather than a broad distribution across multiple product or service codes.

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 = '80JSC022DA003'
    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 1,416,849.00 1.42 million 2
2022 90,970,357.44 90.97 million 24
2023 77,470,169.48 77.47 million 28
2024 81,875,790.54 81.88 million 29
2025 75,930,494.52 75.93 million 33

Insight

Obligations for PIID 80JSC022DA003 were highly concentrated in 2022–2025, after a minimal level in 2021 ($1.42 million across 2 awards). Annual obligations peaked in 2022 at $90.97 million with 24 awards, then remained elevated but somewhat lower in 2023–2025, ranging from $75.93 million to $81.88 million. Award counts increased steadily from 24 in 2022 to 33 in 2025, indicating broader distribution of activity despite relatively stable obligation levels.

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.