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

Fix to address data #145

Closed
nickevansuk opened this issue Jun 19, 2018 · 0 comments
Closed

Fix to address data #145

nickevansuk opened this issue Jun 19, 2018 · 0 comments

Comments

@nickevansuk
Copy link
Contributor

nickevansuk commented Jun 19, 2018

Applying rules:

For this example:

Note the postcode is included in the ride website, but is not present in the feed.

Not like this:

{
  "@context": "https://www.openactive.io/ns/oa.jsonld",
  "type": "Event",
  "location": {
    "type": "Place",
    "description": null,
    "address": {
      "type": "PostalAddress",
      "addressCountry": "GB",
      "addressLocality": null,
      "addressRegion": "unknown",
      "postalCode": null,
      "streetAddress": " "
    }
  }
}

Like this:

{
  "@context": "https://www.openactive.io/ns/oa.jsonld",
  "type": "Event",
  "location": {
    "type": "Place",
    "address": {
      "type": "PostalAddress",
      "addressCountry": "GB",
      "postalCode": "IP1 4HT"
    }
  }
}
@nickevansuk nickevansuk added this to the British Cycling [RPDE] milestone Jun 19, 2018
@nickevansuk nickevansuk added this to To do in British Cycling Endpoint Review via automation Jun 19, 2018
@sevenpointsix sevenpointsix moved this from To do to In progress in British Cycling Endpoint Review Aug 2, 2018
@sevenpointsix sevenpointsix moved this from In progress to QA in British Cycling Endpoint Review Aug 2, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Development

No branches or pull requests

1 participant