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

24 lines
790 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/rsvps/v1.json",
"type": "object",
"description": "Contains additional Item metadata for Items that represent RSVPs to events",
"properties": {
"about": {
"type": "string",
"format": "uri",
"description": "URI pointing to more information about this \"_rsvp\" extension"
},
"rsvp": {
"type": "string",
"enum": [
"invited",
"yes",
"no",
"maybe",
"interested"
],
"description": "The type of RSVP response, based on https://microformats.org/wiki/h-entry#Core_Properties and https://microformats.org/wiki/rsvp-brainstorming\n"
}
}
}