23 lines
741 B
JSON
23 lines
741 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:InviteAction",
|
|
"title": "InviteAction",
|
|
"description": "The act of asking someone to attend an event. Reciprocal of RsvpAction.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.",
|
|
"$ref": "schema:CommunicateAction"
|
|
}
|
|
],
|
|
"properties": {
|
|
"event": {
|
|
"description": "Upcoming or past event associated with this place, organization, or action.",
|
|
"oneOf": [
|
|
{ "$ref": "schema:Event" },
|
|
{ "type": "array", "items": { "$ref": "schema:Event" } }
|
|
]
|
|
}
|
|
}
|
|
}
|