Renewal Date
The date on which the vendor’s registration is scheduled to expire or requires renewal in CCR/SAM-related registration data. It identifies the vendor site’s current registration renewal point for the record captured in FPDS.
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
- Filtering awards by vendor registration expiration window
- Assessing vendor registration currency at award time
- Grouping records for compliance or data quality analysis
Common Mistakes
- Assuming the date means the registration was renewed on that day rather than due to renew
- Using it as the award date or contract expiration date
Query Guidance
Parse the value as a datetime/date field and compare it with award or action dates using standard date functions. Use it in WHERE clauses for expiration-window logic, and aggregate by month or quarter when analyzing registration renewal patterns.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__ccrRegistrationDetails__renewalDate AS renewal_date
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__ccrRegistrationDetails__renewalDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__ccrRegistrationDetails__renewalDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__ccrRegistrationDetails__renewalDate 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.