|
| 1 | +@prefix : <http://schema.org/> . |
| 2 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
| 3 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 4 | + |
| 5 | +:SolveMathAction a rdfs:Class ; |
| 6 | + rdfs:label "SolveMathAction" ; |
| 7 | + :category "issue-2740" ; |
| 8 | + :isPartOf <http://pending.schema.org> ; |
| 9 | + :source <https://github.com/schemaorg/schemaorg/issues/2740> ; |
| 10 | + rdfs:comment "The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression." ; |
| 11 | + rdfs:subClassOf :Action . |
| 12 | + |
| 13 | +:MathSolver a rdfs:Class ; |
| 14 | + rdfs:label "MathSolver" ; |
| 15 | + :category "issue-2740" ; |
| 16 | + :isPartOf <http://pending.schema.org> ; |
| 17 | + :source <https://github.com/schemaorg/schemaorg/issues/2740> ; |
| 18 | + rdfs:comment "A math solver which is capable of solving a subset of mathematical problems." ; |
| 19 | + rdfs:subClassOf :LearningResource . |
| 20 | + |
| 21 | +:mathExpression a rdf:Property ; |
| 22 | + rdfs:label "mathExpression" ; |
| 23 | + :category "issue-2740" ; |
| 24 | + :domainIncludes :GovernmentService, |
| 25 | + :Legislation ; |
| 26 | + :isPartOf <http://pending.schema.org> ; |
| 27 | + :rangeIncludes :SolveMathAction, |
| 28 | + :Text ; |
| 29 | + :source <https://github.com/schemaorg/schemaorg/issues/2740> ; |
| 30 | + rdfs:comment "The query string that can be injected into the target property of the SolveMathAction." . |
0 commit comments