{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/cornell/main/json-schema/cornell-event-schema.json", "title": "Cornell Event", "description": "An official Cornell event as returned by the Cornell Events (CODI) API events endpoint (Localist-backed).", "type": "object", "properties": { "id": { "type": "integer" }, "title": { "type": "string" }, "url": { "type": "string", "format": "uri" }, "updated_at": { "type": "string", "format": "date-time" }, "created_at": { "type": "string", "format": "date-time" }, "first_date": { "type": "string", "format": "date" }, "last_date": { "type": "string", "format": "date" }, "urlname": { "type": "string" }, "location": { "type": "string" }, "location_name": { "type": "string" }, "room_number": { "type": "integer" }, "recurring": { "type": "boolean" }, "free": { "type": "boolean" }, "private": { "type": "boolean" }, "verified": { "type": "boolean" }, "sponsored": { "type": "boolean" }, "venue_id": { "type": "integer" }, "ticket_url": { "type": "string", "format": "uri" }, "ticket_cost": { "type": "integer" }, "keywords": { "type": "array", "items": { "type": "string" } }, "tags": { "type": "array", "items": { "type": "string" } }, "description_text": { "type": "string" }, "description": { "type": "string" }, "event_instances": { "type": "array", "items": { "type": "object" } }, "address": { "type": "string" }, "featured": { "type": "boolean" }, "geo": { "type": "object" }, "filters": { "type": "object" }, "localist_url": { "type": "string", "format": "uri" }, "localist_ics_url": { "type": "string", "format": "uri" }, "photo_url": { "type": "string", "format": "uri" }, "venue_url": { "type": "string", "format": "uri" }, "groups": { "type": "array", "items": { "type": "object" } } }, "required": ["id", "title"] }