Phone No
Vendor location telephone number recorded in the Other Transaction IDV vendor site details. It identifies the phone contact associated with the specific vendor location, typically stored as a string of digits and may include formatting or country code variations.
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
- contact lookup for vendor site records
- data quality checks on vendor location completeness
- matching or deduplication of vendor site entries
Common Mistakes
- using the phone number as a unique vendor identifier
- joining on raw formatted values without normalizing punctuation and country codes
Query Guidance
Use it as a non-key descriptive field in SELECT, filtering, or data-quality checks. For comparison or deduplication, standardize to digits-only or a consistent phone format first, and test for nulls, blanks, and repeated values before treating it as an analytical dimension.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__phoneNo AS phone_no
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__phoneNo IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__phoneNo AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__phoneNo 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.