lspace.ns.vocab.schema.HowToStep.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object HowToStep extends OntologyDef(
iri = "http://schema.org/HowToStep",
iris = Set("http://schema.org/HowToStep"),
label = "HowToStep",
comment = """A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.""",
`@extends` = List(ListItem.ontology, CreativeWork.ontology, ItemList.ontology)
){
object keys extends lspace.ns.vocab.schema.ListItem.Properties with lspace.ns.vocab.schema.CreativeWork.Properties with lspace.ns.vocab.schema.ItemList.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 with lspace.ns.vocab.schema.ItemList.Properties{
override lazy val position = lspace.ns.vocab.schema.position.property}
}