Entity Data Source
Identifies the source system or organization that supplied the entity data for the vendor location record. It is a string attribute that labels where the location/entity information came from, such as D&B or E&Y.
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
- Filter vendor records by data source
- Group awards or vendors by source system for data quality checks
- Compare location provenance across contract records
Common Mistakes
- Using it as a vendor identity field
- Assuming all records share the same source or completeness level
Query Guidance
Use this field in WHERE clauses to isolate records from a specific source, and in GROUP BY to summarize counts by source. When joining or deduplicating vendor data, pair it with vendor identifiers and location fields rather than relying on the source value alone.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__entityDataSource AS entity_data_source
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__entityDataSource IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__entityDataSource AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.