lspace.ns.vocab.schema.UserCheckins.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object UserCheckins extends OntologyDef(
iri = "http://schema.org/UserCheckins",
iris = Set("http://schema.org/UserCheckins"),
label = "UserCheckins",
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{
}
}