Fax No
Telephone fax number recorded for the vendor's location in the IDV vendor site details. It identifies a specific contact channel associated with the vendor site rather than the award, contract action, or parent entity.
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
- vendor contact data validation
- duplicate or location matching
- data quality profiling
Common Mistakes
- using it as a unique identifier
- joining on raw formatted strings without normalization
Query Guidance
Use this field for filtering, profiling, or cleansing rather than for relational joins. In SQL, standardize the value before comparison, for example by removing non-digit characters, and test for NULL or empty strings separately when measuring data completeness.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLocation__faxNo AS fax_no
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLocation__faxNo IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLocation__faxNo AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLocation__faxNo 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.