23 lines
1.2 KiB
JSON
23 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:SolveMathAction",
|
|
"title": "SolveMathAction",
|
|
"description": "The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html).",
|
|
"$ref": "schema:Action"
|
|
}
|
|
],
|
|
"properties": {
|
|
"eduQuestionType": {
|
|
"description": "For questions that are part of learning resources (e.g. Quiz), eduQuestionType indicates the format of question being given. Example: \"Multiple choice\", \"Open ended\", \"Flashcard\".",
|
|
"oneOf": [
|
|
{ "type": "string" },
|
|
{ "type": "array", "items": { "type": "string" } }
|
|
]
|
|
}
|
|
}
|
|
}
|