lspace.ns.vocab.schema.UserPlays.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object UserPlays extends OntologyDef(
iri = "http://schema.org/UserPlays",
iris = Set("http://schema.org/UserPlays"),
label = "UserPlays",
comment = """UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment.""",
`@extends` = List(UserInteraction.ontology)
){
object keys extends lspace.ns.vocab.schema.UserInteraction.Properties{
}
override lazy val properties: List[LProperty] = List()
trait Properties extends lspace.ns.vocab.schema.UserInteraction.Properties{
}
}