{ "$schema": "https://json-structure.org/meta/core/v0", "$id": "https://raw.githubusercontent.com/api-evangelist/epfl/main/json-structure/epfl-event-structure.json", "name": "EpflEvent", "description": "JSON Structure for an EPFL Memento Event.", "type": "object", "properties": { "id": { "type": "int32" }, "title": { "type": "string" }, "slug": { "type": "string" }, "event_url": { "type": "string" }, "visual_url": { "type": "string" }, "lang": { "type": "string" }, "start_date": { "type": "string", "format": "date" }, "end_date": { "type": "string", "format": "date" }, "start_time": { "type": "string" }, "end_time": { "type": "string" }, "description": { "type": "string" }, "creation_date": { "type": "string", "format": "date-time" }, "last_modification_date": { "type": "string", "format": "date-time" }, "canceled": { "type": "string" }, "place_and_room": { "type": "string" }, "speaker": { "type": "string" }, "organizer": { "type": "string" }, "contact": { "type": "string" }, "theme": { "type": "string" }, "keywords": { "type": "string" }, "icalendar_url": { "type": "string" }, "category": { "type": "object" }, "domains": { "type": "array", "items": { "type": "object" } }, "mementos": { "type": "array", "items": { "type": "object" } }, "spoken_languages": { "type": "array", "items": { "type": "object" } } }, "required": ["id", "title", "slug", "event_url", "start_date"] }