{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "schema:AskAction", "title": "AskAction", "description": "The act of posing a question / favor to someone.\\n\\nRelated actions:\\n\\n* [[ReplyAction]]: Appears generally as a response to AskAction.", "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": { "question": { "description": "A sub property of object. A question.", "oneOf": [ { "$ref": "schema:Question" }, { "type": "array", "items": { "$ref": "schema:Question" } } ] } } }