csvconf / csvconf.com

A community conference for data makers everywhere, again!
https://csvconf.com
MIT License
89 stars 44 forks source link

Generate event Schema #128

Open loleg opened 3 years ago

loleg commented 3 years ago

We are big fans of schemas here in the data wrangler community. It would be nice if the website provided machine readable metadata according to a widely understood specification, i.e. schema.org/eventSchedule.

loleg commented 3 years ago

Example in JSON-LD for this year's event:

{
      "@context": "https://schema.org/",
      "@type": "Event",
      "url": "https://csvconf.com/",
      "name": "csv,conf,v6",
      "description": "A community conference for data makers everywhere",
      "duration": "P2D",
      "eventSchedule": {
         "@type": "Schedule",
         "startDate": "2021-05-04",
         "endDate": "2021-05-05",
         "startTime": "13:45",
         "endTime": "21:00",
         "scheduleTimezone": "Europe/London"
      }
}