VINNELL ARABIA's federal procurement profile is concentrated in Department of the Army activity, which accounts for all 2.24 billion in obligations in the analysis window. The largest NAICS areas are National Security, Other Support Activities for Air Transportation, and Facilities Support Services, with obligations peaking in 2022 and 2021 before declining in 2024 and 2025.
Federal Contractor
VINNELL ARABIA Federal Contract Obligations (Last 10 Years)
VINNELL ARABIA (CAGE SF481, UEI N5F4BM883LB5) received 2.24 billion in federal obligations across 173 award actions over the last 10 years, led by the Department of the Army.
Annual figures include negative obligations where recorded, and totals reflect the supplied last-10-year analysis window.
About VINNELL ARABIA federal contract activity
VINNELL ARABIA (CAGE SF481, UEI N5F4BM883LB5) recorded $2.24 billion in obligations across 173 FPDS awards over the last 10 years, for an average award value of about $12.92 million. The profile is heavily concentrated in a relatively small number of awards with materially large dollars, indicating sustained participation in sizable federal service and support requirements.
Agency mix and customer concentration
Award activity is fully concentrated in the Department of the Army, which accounts for the entire $2.24 billion and all 173 awards in the observed window. This single-agency dependency indicates a narrow customer base and a procurement relationship centered on Army requirements rather than a diversified federal footprint.
Industry profile based on NAICS activity
The largest share of obligations is associated with NAICS 928110, National Security, at $1.64 billion across 107 awards, making it the dominant classification in the vendor’s history. Secondary activity appears in support-oriented codes, led by Other Support Activities for Air Transportation at $536.75 million, with smaller but recurring obligations in Facilities Support Services, Office Administrative Services, and General Warehousing and Storage.
Annual contract trend over the analysis window
Obligations have been volatile in the most recent years shown, with strong positive funding in 2021 through 2024 and a negative net obligation in 2025 to date. Peak annual obligations in the provided window occurred in 2022 at $239.88 million, closely followed by 2021 at $230.71 million, before moderating to $92.45 million in 2023 and $15.12 million in 2024.
How to interpret this page
This summary is based on FPDS award records matched to CAGE SF481 and UEI N5F4BM883LB5 over the last 10 years. Totals reflect obligated dollars and award counts as provided in the dataset; annual figures represent net obligations for each year in the analysis window.
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 = 'SF481'
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 |
|---|---|---|---|---|
| 2100 | DEPT OF THE ARMY | 2,235,552,248.32 | 2.24 billion | 173 |
Insight
Over the last 10 years, VINNELL ARABIA’s obligations are fully concentrated in a single agency: the Department of the Army. The Army accounts for the full $2.24 billion in obligated value across 173 awards, indicating a highly concentrated customer base with no diversification across other agencies in this period. This concentration suggests the vendor’s federal activity has been entirely dependent on one 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 = 'SF481'
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 |
|---|---|---|---|---|
| 928110 | NATIONAL SECURITY | 1,641,991,511.27 | 1.64 billion | 107 |
| 488190 | OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION | 536,749,856.13 | 536.75 million | 20 |
| 561210 | FACILITIES SUPPORT SERVICES | 38,794,151.73 | 38.79 million | 22 |
| 561110 | OFFICE ADMINISTRATIVE SERVICES | 17,107,991.00 | 17.11 million | 16 |
| 493110 | GENERAL WAREHOUSING AND STORAGE | 4,150,934.00 | 4.15 million | 5 |
| 811310 | COMMERCIAL AND INDUSTRIAL MACHINERY AND EQUIPMENT (EXCEPT AUTOMOTIVE AND ELECTRONIC) REPAIR AND MAINTENANCE | 595,607.00 | 595.61 thousand | 1 |
| 541611 | ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES | -3,837,802.81 | -3.84 million | 2 |
Insight
Over the last 10 years, VINNELL ARABIA’s obligations are heavily concentrated in NAICS 928110, National Security, which accounts for $1.64 billion across 107 awards, or the clear majority of the vendor’s $2.24 billion total. The next largest category, NAICS 488190, Other Support Activities for Air Transportation, totals $536.75 million across 20 awards, indicating a strong secondary focus but still a substantial drop from the dominant line of business. The remaining NAICS codes each represent relatively small shares of total obligations, with most falling below $40 million, and one minor negative obligation in NAICS 541611 slightly offsets the portfolio.
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 = 'SF481'
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 | -1,920,700.83 | -1.92 million | 6 |
| 2024 | 15,116,093.63 | 15.12 million | 10 |
| 2023 | 92,446,703.81 | 92.45 million | 19 |
| 2022 | 239,883,883.69 | 239.88 million | 17 |
| 2021 | 230,711,283.93 | 230.71 million | 22 |
| 2020 | 415,712,637.58 | 415.71 million | 14 |
| 2019 | 577,419,330.44 | 577.42 million | 23 |
| 2018 | 555,006,103.12 | 555.01 million | 25 |
| 2017 | 111,176,912.95 | 111.18 million | 37 |
Insight
VINNELL ARABIA (CAGE SF481) has received $2.24 billion across 173 awards over the last 10 years, with obligations concentrated in the 2018–2022 period. Annual obligations peaked in 2019 at $577.42 million and remained elevated in 2018, 2020, 2021, and 2022, before declining materially in 2023 and 2024. The 2025 total is negative at -$1.92 million across 6 awards, indicating year-to-date downward adjustment activity rather than sustained obligation growth.
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.