Skip to content
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

Merged
merged 7 commits into from
Nov 30, 2023

Conversation

nmdefries
Copy link
Contributor

@nmdefries nmdefries commented Nov 28, 2023

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) for tryFormats in as.Date. This has slightly different behavior than using the format arg:

  • In the new version, multiple date formats are tried in order. If none match the observed format, as.Date raises an error.
  • In the previous version, as.Date only tried one format and would return NA if the observed format didn't match it.

@nmdefries nmdefries force-pushed the ndefries/add-missing-epidata-spec branch from 1cb23fa to 38a5c1b Compare November 29, 2023 16:47
@nmdefries nmdefries changed the title fill in ? for public endpoints Add missing field specs for endpoints; parse release_date as date Nov 29, 2023
@nmdefries nmdefries marked this pull request as ready for review November 29, 2023 16:59
Copy link
Contributor

@dshemetov dshemetov left a 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?

Base automatically changed from ndefries/parse-date-cols to dev November 30, 2023 14:27
@nmdefries
Copy link
Contributor Author

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 data.frame/tibble conversions).

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 fetch_args_list. That would cause a lot of spurious warnings.

@nmdefries nmdefries merged commit 22d064a into dev Nov 30, 2023
@nmdefries nmdefries deleted the ndefries/add-missing-epidata-spec branch November 30, 2023 15:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants