Files
marka/registry/schema-org/AskAction.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

23 lines
775 B
JSON

{
"$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" } }
]
}
}
}