In the DQT library check whether grants are awarded within the last 6 months.
Recommendation of approach:
- In https://github.com/ThreeSixtyGiving/dataquality/tree/main/lib360dataquality add a new file for this check to live in. Unless it is to also be shown in Cove (web UI)
- Subclass AdditionalCheck and implement a check to see if any
awardDate >= (now - 6 months).
- Add the check to the checks the datastore performs. https://github.com/ThreeSixtyGiving/datastore/blob/live/datastore/data_quality/quality_data.py#L33
- Make sure the datastore aggregates the value to a publisher level correctly from the source files
In the DQT library check whether grants are awarded within the last 6 months.
Recommendation of approach:
awardDate >= (now - 6 months).