-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing field specs for endpoints; parse release_date
as date
#223
Conversation
1cb23fa
to
38a5c1b
Compare
release_date
as date
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good, i didn't check the column names for correctness or completeness.
btw, what happens if the metadata for an endpoint is
- missing a field that comes back from a response? does it still get returned in the tibble or is it missing?
- has an extra field not in the response? is there an error or is it silently ignored?
If endpoint metadata is missing the spec for a field that is actually returned, a warning is triggered. That field is returned as the type provided in the response JSON (maybe plus some auto-typing from We attempt to apply every metadata field spec to the response; non-specified fields aren't handled at all. When no metadata is provided, the response is returned as-is. (Maybe this case should have a warning too?) If the response is missing a field that the endpoint metadata provides the spec for, nothing happens -- it's silently ignored (since the code loops over metadata field specs rather than over columns in the response df). We ignore this case because users can request a subset of fields to be fetched via |
Add missing field specs for endpoints. I could only manually check field specs for private endpoints against the corresponding server code, so it's possible those have additional missing field specs. If so, a call to those endpoints will issue a warning listing the missing fields.
Parse
release_date
fields as hyphen-separated dates, rather than as text. To do so, I used a list of date formats (YYYYMMDD and YYYY-MM-DD) fortryFormats
inas.Date
. This has slightly different behavior than using theformat
arg:as.Date
raises an error.as.Date
only tried one format and would returnNA
if the observed format didn't match it.