Website URL
The website URL recorded in the contract marketing section of an IDV. It identifies the web address associated with the marketing information for the instrument, usually as a string value rather than a coded selection.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Linking an IDV to a vendor or vehicle website
- Normalizing URLs for external data enrichment
- Filtering records with populated marketing contact information
Common Mistakes
- Assuming the value is standardized or validated
- Using it as a proxy for active website availability
Query Guidance
Select and normalize the field with functions such as TRIM and LOWER before comparison or grouping. For searches, use exact-match or domain-based pattern logic only after accounting for missing protocols, case variation, and possible duplicate URLs across records.
SQL Examples
Preview values
SELECT
content__IDV__contractMarketingData__websiteURL AS website_u_r_l
FROM fpds.data
WHERE content__IDV__contractMarketingData__websiteURL IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractMarketingData__websiteURL AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractMarketingData__websiteURL 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.