James Brumond 7150219ca5
update json feed extensions with about field;
update json feed event extension to rename fields to not have `date_` prefix
2022-11-23 12:17:08 -08:00

23 lines
731 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://gitea.jbrumond.me/minimal/docs/raw/branch/master/json-schema/json-feed-extensions/events/v1.json",
"type": "object",
"description": "Contains additional Item metadata for Items that represent events",
"properties": {
"about": {
"type": "string",
"format": "uri",
"description": "URI pointing to more information about this \"_event\" extension"
},
"start": {
"type": "string",
"format": "date-time",
"description": "The date and time that the event starts"
},
"end": {
"type": "string",
"format": "date-time",
"description": "The date and time that the event ends"
}
}
}