This page summarizes FPDS procurement activity for the National Technical Information Service over the last 5 years. The provided dataset shows 0 award actions and no available top-vendor, NAICS, or annual trend detail.
Federal Agency
NATIONAL TECHNICAL INFORMATION SERVICE Federal Contract Obligations (Last 5 Years)
Federal procurement summary for the National Technical Information Service (Agency ID 1342) covering the last 5 years, with no recorded award actions in the provided data.
Totals, average action value, and related breakout tables are not populated in the provided inputs, so no additional procurement analysis can be stated.
About NATIONAL TECHNICAL INFORMATION SERVICE federal contract activity
FPDS Query shows no recorded contract award activity for NATIONAL TECHNICAL INFORMATION SERVICE (Agency ID 1342) in the last 5 years. With an award count of 0 and no obligated dollars reported, there is no measurable procurement footprint to summarize for the analysis period.
Vendor concentration and leading contractors
No top vendors can be identified because the underlying dataset contains no awards for this agency during the period reviewed. As a result, vendor concentration, supplier diversity, and repeat-award patterns cannot be assessed from the available records.
Industry profile based on NAICS activity
No NAICS codes are available because no contract actions are present in the dataset for the last 5 years. Without award-level activity, there is no basis for identifying the agency’s procurement mix or industry exposure.
Annual contract trend over the analysis window
The annual trend is flat at zero throughout the analysis window, reflecting no reported obligations or award counts in the available FPDS records. With no year-over-year activity, there is no observable change in procurement volume or spending trajectory.
How to interpret this page
This page summarizes FPDS Query data for NATIONAL TECHNICAL INFORMATION SERVICE over the last 5 years. Findings are limited to the records available in the dataset; where values are null or counts are zero, no additional inference has been applied.
Top Vendors
SELECT
vendor_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__vendor__vendorHeader__vendorName AS vendor_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__purchaserInformation__contractingOfficeAgencyID = '1342'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY vendor_name
)
ORDER BY total_obligated DESC
LIMIT 10
| Vendor | Total Obligated | Readable | Award Actions |
|---|
Insight
No notable vendor concentration was available for this analysis window.
Top NAICS
SELECT
naics_code,
naics_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__purchaserInformation__contractingOfficeAgencyID = '1342'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|
Insight
No notable NAICS concentration was available for this analysis window.
Annual Trend
SELECT
year,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__purchaserInformation__contractingOfficeAgencyID = '1342'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
)
ORDER BY year DESC
| Year | Total Obligated | Readable | Award Actions |
|---|
Insight
No annual trend data was available for this analysis window.
Use FPDS Query for deeper analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper market analysis across agencies, vendors, NAICS, and contract trends.
Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.