lspace.ns.vocab.schema.HowToTip.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object HowToTip extends OntologyDef(
iri = "http://schema.org/HowToTip",
iris = Set("http://schema.org/HowToTip"),
label = "HowToTip",
comment = """An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection).""",
`@extends` = List(ListItem.ontology, CreativeWork.ontology)
){
object keys extends lspace.ns.vocab.schema.ListItem.Properties with lspace.ns.vocab.schema.CreativeWork.Properties{
override lazy val position = lspace.ns.vocab.schema.position.property}
override lazy val properties: List[LProperty] = List()
trait Properties extends lspace.ns.vocab.schema.ListItem.Properties with lspace.ns.vocab.schema.CreativeWork.Properties{
override lazy val position = lspace.ns.vocab.schema.position.property}
}