Vehicle Number

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

Federal procurement activity for vehicle number NNJ16JA52B at agency 8000 over the last 5 years, with 93 award actions and $137.40 million obligated.

This page summarizes vehicle number NNJ16JA52B for agency 8000 across the last 5 years. The record shows 93 award actions with total obligations of $137,399,596.34 and an average action value of $1,477,415.01.

Generated at 03/21/2026

Analysis period: Last 5 years

Dollar amounts reflect the provided readable total and exact obligated total for the analysis window.

Agency ID
8000
PIID
NNJ16JA52B
Type
Vehicle
Total Obligated
137.40 million
137,399,596.34
Actions
93
Average Action Value
1,477,415.01

Overview

Vehicle number NNJ16JA52B is associated with agency 8000 in the last 5 years of obligation data. Across that period, the record includes 93 award actions and $137,399,596.34 in total obligations, with an average action value of $1,477,415.01.

How to use this page

Use this page to review the volume and value of award actions tied to vehicle number NNJ16JA52B. The figures support quick comparison of this vehicle against other FPDS records for the same agency and period.

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 = 'NNJ16JA52B'
    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 137,399,596.34 137.40 million 93

Insight

Within the 5-year window for vehicle PIID NNJ16JA52B, National Aeronautics and Space Administration accounted for the full reported obligation total of $137.40 million across 93 awards. This indicates complete concentration of obligations to a single agency in the available data, with no other agency activity reflected in this section.

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 = 'NNJ16JA52B'
        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 = 'NNJ16JA52B'
    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
518210 DATA PROCESSING, HOSTING, AND RELATED SERVICES 104,833,923.25 104.83 million 58
518210 COMPUTING INFRASTRUCTURE PROVIDERS, DATA PROCESSING, WEB HOSTING, AND RELATED SERVICES 32,565,673.09 32.57 million 35

Insight

Obligations under PIID NNJ16JA52B are concentrated in NAICS 518210, with $104.83 million across 58 awards in the five-year window. A secondary NAICS description for the same code accounts for an additional $32.57 million across 35 awards, indicating continued activity in data processing and hosting-related services. The distribution suggests recurring procurement within a narrow services category rather than broad NAICS diversification.

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 = 'NNJ16JA52B'
    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
D399 IT AND TELECOM- OTHER IT AND TELECOMMUNICATIONS 137,399,596.34 137.40 million 93

Insight

Over the 5-year window, obligations under PIID NNJ16JA52B are fully concentrated in PSC D399, with $137.40 million across 93 awards. This indicates the vehicle was used consistently for IT and telecommunications-related requirements rather than a diversified mix of PSCs. The repeated award activity suggests sustained procurement demand in this 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 = 'NNJ16JA52B'
    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 58,254,028.11 58.25 million 33
2022 55,436,079.66 55.44 million 31
2023 23,701,642.17 23.70 million 28
2024 7,846.40 7.85 thousand 1

Insight

Obligations under PIID NNJ16JA52B were concentrated in 2021–2022, with annual obligations of $58.25 million and $55.44 million across 33 and 31 awards, respectively. Funding then declined sharply in 2023 to $23.70 million across 28 awards, indicating a material reduction in annual volume while award counts remained comparatively steady. In 2024, activity dropped to a single award with only $7.85 thousand obligated, suggesting the vehicle’s recent use was minimal within the five-year window.

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.