Cornell University · Schema
Cornell Event
An official Cornell event as returned by the Cornell Events (CODI) API events endpoint (Localist-backed).
EducationHigher EducationUniversityOpen DataCourse CatalogLibraryResearchUnited States
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| title | string | |
| url | string | |
| updated_at | string | |
| created_at | string | |
| first_date | string | |
| last_date | string | |
| urlname | string | |
| location | string | |
| location_name | string | |
| room_number | integer | |
| recurring | boolean | |
| free | boolean | |
| private | boolean | |
| verified | boolean | |
| sponsored | boolean | |
| venue_id | integer | |
| ticket_url | string | |
| ticket_cost | integer | |
| keywords | array | |
| tags | array | |
| description_text | string | |
| description | string | |
| event_instances | array | |
| address | string | |
| featured | boolean | |
| geo | object | |
| filters | object | |
| localist_url | string | |
| localist_ics_url | string | |
| photo_url | string | |
| venue_url | string | |
| groups | array |
JSON Schema
{
"$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"]
}