Vehicle Number

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

Vehicle number data for PIID NNM11AA04C under agency 8000 shows 81 award actions over the last 5 years, with $177.39 million obligated.

This page summarizes procurement activity tied to vehicle number for PIID NNM11AA04C in agency 8000 during the last 5 years. Total obligated dollars are $177,391,339.07 across 81 award actions, for an average action value of $2,190,016.53.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts reflect the last 5 years and are based on the provided total obligated and award action counts.

Agency ID
8000
PIID
NNM11AA04C
Type
Vehicle
Total Obligated
177.39 million
177,391,339.07
Actions
81
Average Action Value
2,190,016.53

Overview

The record for vehicle number under PIID NNM11AA04C shows sustained award activity in agency 8000 over the last 5 years. Across 81 award actions, total obligated funding reached $177,391,339.07, with an average action value of $2,190,016.53. The figures indicate repeated procurement activity rather than a single isolated action.

How to use this page

Use this page to review obligation levels, action frequency, and average action size associated with the vehicle number record. The data supports basic trend review and comparison within the same PIID and agency context. It does not identify the underlying vehicle itself beyond the provided entity type and label.

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 = 'NNM11AA04C'
    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 177,391,339.07 177.39 million 81

Insight

Within the 5-year window, obligations for vehicle NNM11AA04C are fully concentrated at the National Aeronautics and Space Administration, which accounts for $177.39 million across 81 awards. This indicates a single-agency award base with no observable distribution across other agencies in the provided data. The volume of awards alongside the obligation total suggests repeated use of the vehicle by NASA over the 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 = 'NNM11AA04C'
        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 = 'NNM11AA04C'
    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 177,391,339.07 177.39 million 81

Insight

Over the 5-year window, obligations for PIID NNM11AA04C are fully concentrated in NAICS 541512, Computer Systems Design Services. This category accounts for $177.39 million across 81 awards, indicating sustained reliance on a single services classification rather than a diversified NAICS mix. The concentration suggests the vehicle is being used primarily for computer systems design activity within Agency ID 8000.

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 = 'NNM11AA04C'
    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 177,391,339.07 177.39 million 81

Insight

Over the 5-year window for vehicle NNM11AA04C at agency 8000, obligations are fully concentrated in PSC D301, IT and Telecom-Facility Operation and Maintenance. This category accounts for $177.39 million across 81 awards, indicating a sustained and highly focused spend pattern rather than a diversified PSC mix.

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 = 'NNM11AA04C'
    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 148,996,550.16 149.00 million 42
2022 32,403,438.68 32.40 million 26
2023 -3,656,150.93 -3.66 million 12
2024 -352,498.84 -352.50 thousand 1

Insight

Obligations under PIID NNM11AA04C were heavily concentrated in 2021, when 42 awards totaled $149.0 million. Funding fell sharply in 2022 to $32.4 million across 26 awards, then turned negative in 2023 and 2024, indicating downward adjustment activity rather than new obligation growth. Award volume also contracted over the period, dropping from 42 in 2021 to 1 in 2024, which suggests the vehicle’s activity became increasingly limited after 2022.

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.