Vehicle Number

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

Analyst summary of vehicle number activity for PIID 80JSC019D0008 under Agency ID 8000 over the last 10 years.

This page summarizes obligations and award actions tied to vehicle number for PIID 80JSC019D0008 across the last 10 years. Total obligated amount is $242.18 million across 103 award actions, with an average action value of $2,351,295.18.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on readable obligated values for the analysis window and may differ from raw FPDS fields due to formatting or reporting differences.

Agency ID
8000
PIID
80JSC019D0008
Type
Vehicle
Total Obligated
242.18 million
242,183,403.98
Actions
103
Average Action Value
2,351,295.18

Overview

The vehicle number record for PIID 80JSC019D0008 shows $242,183,403.98 in total obligated value over the last 10 years. That total is spread across 103 award actions, with an average action value of $2,351,295.18. This page is intended to support procurement review by consolidating the award activity tied to this vehicle identifier.

How to use this page

Use this page to assess how vehicle number activity for PIID 80JSC019D0008 has been distributed over time and across actions. The obligation total and action count provide a compact view of contract activity for Agency ID 8000 within the selected 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 = '80JSC019D0008'
    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 242,183,403.98 242.18 million 103

Insight

Within the 10-year window, all recorded obligations for PIID 80JSC019D0008 are concentrated in the National Aeronautics and Space Administration, totaling $242.18 million across 103 awards. This indicates the vehicle is fully attributable to a single agency, with no cross-agency distribution reflected in the provided data. The volume of awards suggests sustained use over time rather than a one-time obligation event.

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 = '80JSC019D0008'
        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 = '80JSC019D0008'
    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
541330 ENGINEERING SERVICES 242,183,403.98 242.18 million 103

Insight

Obligations for PIID 80JSC019D0008 are fully concentrated in NAICS 541330, Engineering Services, over the 10-year window. This single NAICS accounts for $242.18 million across 103 awards, indicating a stable and highly focused procurement profile. The distribution reflects no observable NAICS diversification within the provided data.

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 = '80JSC019D0008'
    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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 242,183,403.98 242.18 million 103

Insight

Over the 10-year window, vehicle PIID 80JSC019D0008 is entirely concentrated in PSC R425, Support- Professional: Engineering/Technical. This PSC accounts for $242.18 million across 103 awards, indicating sustained use of the vehicle for engineering and technical support services. No other PSCs are reflected in the provided data, so the observed obligation profile is fully concentrated in a single service category.

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 = '80JSC019D0008'
    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
2019 25,403,112.41 25.40 million 16
2020 44,830,011.32 44.83 million 17
2021 53,088,885.32 53.09 million 18
2022 48,264,942.56 48.26 million 19
2023 54,786,674.28 54.79 million 21
2024 15,776,100.44 15.78 million 10
2025 33,677.65 33.68 thousand 2

Insight

Obligations for PIID 80JSC019D0008 increased from $25.40 million in 2019 to a peak of $54.79 million in 2023, with award counts also rising from 16 to 21 over the same period. Activity then dropped sharply in 2024 to $15.78 million across 10 awards and was minimal in 2025 at $33.68 thousand across 2 awards. The pattern indicates a concentrated period of higher funding in 2020–2023 followed by a pronounced decline in both obligated value and award volume.

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.