lspace.ns.vocab.schema.PerformingGroup.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object PerformingGroup extends OntologyDef(
iri = "http://schema.org/PerformingGroup",
iris = Set("http://schema.org/PerformingGroup"),
label = "PerformingGroup",
comment = """A performance group, such as a band, an orchestra, or a circus.""",
`@extends` = List(Organization.ontology)
){
object keys extends lspace.ns.vocab.schema.Organization.Properties{
}
override lazy val properties: List[LProperty] = List()
trait Properties extends lspace.ns.vocab.schema.Organization.Properties{
}
}