Vehicle Number

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

Vehicle number record for Agency ID 8000 under PIID NNL12AA09C, summarizing obligated activity over the last 5 years.

This page presents the procurement history for vehicle number associated with PIID NNL12AA09C for Agency ID 8000. Over the last 5 years, the record shows 5 award actions and total obligated funds of -$1.68 million.

Generated at 03/21/2026

Analysis period: Last 5 years

All figures reflect the provided analysis window and the exact total obligated amount of -1683349.94.

Agency ID
8000
PIID
NNL12AA09C
Type
Vehicle
Total Obligated
-1.68 million
-1,683,349.94
Actions
5
Average Action Value
-336,669.99

Overview

The vehicle number record is tied to Agency ID 8000 and PIID NNL12AA09C. In the last 5 years, it reflects 5 award actions with total obligated value of -$1,683,349.94 and an average action value of -$336,669.99.

How to use this page

Use this page to review the obligation level and action count associated with this vehicle record over the stated period. The negative obligated total should be read exactly as provided in the source data.

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 = 'NNL12AA09C'
    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 -1,683,349.94 -1.68 million 5

Insight

Over the 5-year window for PIID NNL12AA09C, all reported obligations in the top_agencies section are concentrated in a single agency: the National Aeronautics and Space Administration (Agency ID 8000). NASA accounts for 5 awards and net obligations of -$1.68 million, indicating a fully concentrated award distribution and a negative net obligated value 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 = 'NNL12AA09C'
        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 = 'NNL12AA09C'
    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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) -1,683,349.94 -1.68 million 5

Insight

Over the 5-year window for PIID NNL12AA09C, obligations are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (Except Biotechnology). This category accounts for five awards and a net total obligation of -$1.68 million, indicating the vehicle’s activity in this period is narrowly focused within a single NAICS code. The negative obligated total should be interpreted as a net deobligation position rather than new funding growth.

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 = 'NNL12AA09C'
    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 -1,683,349.94 -1.68 million 5

Insight

Obligations for this vehicle are fully concentrated in PSC AR11, covering Space R&D services and related supporting activities. Over the 5-year window, 5 awards generated a net total obligation of -$1.68 million, indicating a negative funding balance overall rather than positive obligated spending. This single-PSC pattern suggests the vehicle has been used exclusively for one category of space research and development support.

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 = 'NNL12AA09C'
    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 -634,802.04 -634.80 thousand 2
2022 -955,417.85 -955.42 thousand 2
2023 -93,130.05 -93.13 thousand 1

Insight

Over the 5-year window, obligations for PIID NNL12AA09C under Agency 8000 are concentrated in three reported years, with no activity provided for 2020 or 2024–2025. Obligations were negative in each year and peaked in magnitude in 2022 at -$955.42 thousand across 2 awards, following -$634.80 thousand across 2 awards in 2021. Activity declined sharply in 2023 to -$93.13 thousand on 1 award, indicating a marked reduction in obligated volume 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.