Entity Data Source
Identifies the source system or authority that supplied the vendor location entity information in the award record. For this field, the value is typically a coded or abbreviated source indicator rather than a descriptive narrative.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Data quality checks for vendor location provenance
- Grouping awards by vendor data source
- Filtering records by source system for matching or enrichment
Common Mistakes
- Using the value as a vendor geography field
- Assuming the code means the same thing as vendor name or address
Query Guidance
Use this field in WHERE or GROUP BY clauses to segment records by vendor location source, and join to any reference table that translates source codes to labels when available. When analyzing location-sensitive metrics, test for missing or mixed source values before aggregating.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__entityDataSource AS entity_data_source
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__entityDataSource IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__entityDataSource AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__entityDataSource IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.