Federal Contractor

JEFFERSON SCIENCE ASSOCIATES LIMITED LIABILITY COMPANY A SURA/CSC COMPANY Federal Contract Obligations (Last 10 Years)

Federal procurement profile for JEFFERSON SCIENCE ASSOCIATES LIMITED LIABILITY COMPANY A SURA/CSC COMPANY showing 10 years of award activity, obligations, and agency mix.

JEFFERSON SCIENCE ASSOCIATES LIMITED LIABILITY COMPANY A SURA/CSC COMPANY (CAGE 48VY8, UEI MTWLVRJR54N7) recorded $1.66 billion in obligated federal awards across 166 actions in the last 10 years. Activity was entirely concentrated in the Department of Energy and in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual values reflect the last 10 years of readable FPDS award data and may differ from totals in other reporting cuts or update cycles.

CAGE Code
48VY8
UEI
MTWLVRJR54N7
Total Obligated
1.66 billion
1,664,312,832.49
Award Actions
166
Average Action Value
10,025,980.91

About JEFFERSON SCIENCE ASSOCIATES LIMITED LIABILITY COMPANY A SURA/CSC COMPANY federal contract activity

JEFFERSON SCIENCE ASSOCIATES LIMITED LIABILITY COMPANY A SURA/CSC COMPANY (CAGE 48VY8, UEI MTWLVRJR54N7) recorded $1.66 billion in obligated federal awards across 166 awards over the last 10 years, for an average award value of $10.03 million. The profile indicates sustained, high-value contracting activity rather than sporadic awards, with all observed obligations concentrated in a single agency and NAICS code.

Agency mix and customer concentration

All reported obligations in the analysis window came from the Department of Energy (agency 8900), which accounted for the full $1.66 billion and all 166 awards. This agency concentration indicates a highly focused federal customer base and suggests the vendor’s work is strongly aligned to DOE mission requirements. No material diversification across other agencies is reflected in the provided data.

Industry profile based on NAICS activity

All reported obligations were classified under NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, representing the full $1.66 billion and all 166 awards. The code alignment confirms the vendor’s procurement history is concentrated in scientific and technical R&D services. The data does not show meaningful NAICS diversification within the stated period.

Annual contract trend over the analysis window

Annual obligations remained elevated and relatively consistent in the years shown, ranging from $177.87 million in 2021 to $275.31 million in 2025. The pattern shows a moderate dip in 2024 followed by a rebound in 2025, with award counts also varying by year but remaining in the mid-teens to low twenties. Overall, the series reflects a stable, ongoing award relationship rather than a single spike year.

How to interpret this page

This summary is based solely on the supplied FPDS Query aggregates for the last 10 years and reflects obligated amounts, award counts, and concentration by agency and NAICS code. Figures are as provided and may not reconcile to contract-level detail without additional FPDS record review. No assumptions were made beyond the supplied data.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '48VY8'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
8900 ENERGY, DEPARTMENT OF 1,664,312,832.49 1.66 billion 166

Insight

Over the last 10 years, obligations for JEFFERSON SCIENCE ASSOCIATES LIMITED LIABILITY COMPANY A SURA/CSC COMPANY are fully concentrated at the Department of Energy, which accounts for the entire $1.66 billion obligated and all 166 awards. This indicates a highly concentrated customer base with no visible agency diversification in the provided period. The average award value of about $10.03 million suggests a portfolio made up of moderately large, recurring actions within a single agency relationship.

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__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '48VY8'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES 1,664,312,832.49 1.66 billion 166

Insight

Over the last 10 years, JEFFERSON SCIENCE ASSOCIATES LIMITED LIABILITY COMPANY A SURA/CSC COMPANY’s obligations are fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. The vendor received 166 awards under this single NAICS, totaling $1.66 billion, indicating a highly concentrated procurement profile with no diversification across other NAICS codes in the provided data. The average award value across the period was approximately $10.03 million, consistent with a sustained pattern of large R&D-related awards.

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__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '48VY8'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 275,305,730.47 275.31 million 22
2024 192,485,123.63 192.49 million 14
2023 250,132,054.35 250.13 million 14
2022 250,817,467.17 250.82 million 17
2021 177,871,481.00 177.87 million 21
2020 158,266,583.51 158.27 million 23
2019 137,406,727.49 137.41 million 20
2018 136,231,389.36 136.23 million 18
2017 85,796,275.51 85.80 million 17

Insight

Over the last 10 years, JEFFERSON SCIENCE ASSOCIATES LIMITED LIABILITY COMPANY A SURA/CSC COMPANY has obligated $1.66 billion across 166 awards, averaging about $10.03 million per award. Obligations are concentrated in the recent period, with 2025 at $275.31 million and prior highs in 2022 ($250.82 million) and 2023 ($250.13 million), while 2017 was the lowest year in the series at $85.80 million. Award counts have remained relatively steady, generally ranging from 14 to 23 per year, indicating that growth in obligated dollars is driven more by higher-value awards than by materially higher award volume.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.