Vehicle Number

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

Vehicle number records for PIID 80NSSC19D0001 track the numbered procurement vehicle used by Agency ID 8000 over the last 5 years.

This page summarizes vehicle number activity for PIID 80NSSC19D0001 across the last 5 years. The record shows 203 award actions with total obligated funding of 532.87 million dollars and an average action value of 2,624,980.94 dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated amount is shown as 532,871,131.32 dollars, with the readable value rounded to 532.87 million dollars.

Agency ID
8000
PIID
80NSSC19D0001
Type
Vehicle
Total Obligated
532.87 million
532,871,131.32
Actions
203
Average Action Value
2,624,980.94

Overview

The vehicle number identifier supports review of award activity tied to PIID 80NSSC19D0001 for Agency ID 8000. In the analysis window, the record includes 203 award actions and total obligated funding of 532,871,131.32 dollars.

How to use this page

Use this page to review the scale and frequency of obligation activity associated with the vehicle number over the last 5 years. The average action value of 2,624,980.94 dollars provides a simple benchmark for comparing individual actions within the record.

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 = '80NSSC19D0001'
    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 532,871,131.32 532.87 million 203

Insight

Within the 5-year window, all reported obligations for vehicle PIID 80NSSC19D0001 are concentrated in a single agency: the National Aeronautics and Space Administration (agency 8000). NASA accounts for $532.87 million across 203 awards, indicating full obligation concentration within the provided dataset and no visible distribution across other agencies. This pattern suggests the vehicle has been 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 = '80NSSC19D0001'
        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 = '80NSSC19D0001'
    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
541512 COMPUTER SYSTEMS DESIGN SERVICES 532,871,131.32 532.87 million 203

Insight

Obligations for PIID 80NSSC19D0001 over the 5-year window are fully concentrated in NAICS 541512, Computer Systems Design Services, with $532.87 million across 203 awards. This indicates a highly concentrated services profile with no diversification across additional NAICS codes in the provided data. The volume of awards suggests repeated use of the same procurement category rather than a broad mix of activity.

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 = '80NSSC19D0001'
    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
D301 IT AND TELECOM- FACILITY OPERATION AND MAINTENANCE 532,871,131.32 532.87 million 203

Insight

Obligations for this vehicle are highly concentrated in PSC D301, IT and Telecom- Facility Operation and Maintenance, which accounts for $532.87 million across 203 awards over the 5-year window. This indicates a sustained focus on a single service category rather than a broad distribution across multiple PSCs. The award count suggests repeated use of the vehicle for recurring requirements in this area.

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 = '80NSSC19D0001'
    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 138,409,050.12 138.41 million 49
2022 109,316,599.74 109.32 million 35
2023 102,909,785.80 102.91 million 39
2024 109,590,678.75 109.59 million 38
2025 72,645,016.91 72.65 million 42

Insight

Obligations on PIID 80NSSC19D0001 were highest in 2021 at $138.41 million across 49 awards, then declined to $109.32 million in 2022 and $102.91 million in 2023. Funding stabilized in 2024 at $109.59 million with 38 awards before falling to $72.65 million in 2025, despite an increase in award count to 42. Overall, the five-year pattern indicates a downward trend in obligated dollars with moderate year-to-year variation in 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.