lspace.ns.vocab.schema.MenuSection.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object MenuSection extends OntologyDef(
iri = "http://schema.org/MenuSection",
iris = Set("http://schema.org/MenuSection"),
label = "MenuSection",
comment = """A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc.), specific type of dishes (such as 'Meat', 'Vegan', 'Drinks', etc.), or some other classification made by the menu provider.""",
`@extends` = List(CreativeWork.ontology)
){
object keys extends lspace.ns.vocab.schema.CreativeWork.Properties{
lazy val hasMenuItem = lspace.ns.vocab.schema.hasMenuItem.property
lazy val hasMenuSection = lspace.ns.vocab.schema.hasMenuSection.property
}
override lazy val properties: List[LProperty] = List(hasMenuItem, hasMenuSection)
trait Properties extends lspace.ns.vocab.schema.CreativeWork.Properties{
lazy val hasMenuItem = lspace.ns.vocab.schema.hasMenuItem.property
lazy val hasMenuSection = lspace.ns.vocab.schema.hasMenuSection.property
}
}