lspace.ns.vocab.schema.InteractionCounter.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object InteractionCounter extends OntologyDef(
iri = "http://schema.org/InteractionCounter",
iris = Set("http://schema.org/InteractionCounter"),
label = "InteractionCounter",
comment = """A summary of how users have interacted with this CreativeWork. In most cases, authors will use a subtype to specify the specific type of interaction.""",
`@extends` = List(StructuredValue.ontology)
){
object keys extends lspace.ns.vocab.schema.StructuredValue.Properties{
lazy val interactionService = lspace.ns.vocab.schema.interactionService.property
lazy val interactionType = lspace.ns.vocab.schema.interactionType.property
lazy val userInteractionCount = lspace.ns.vocab.schema.userInteractionCount.property
}
override lazy val properties: List[LProperty] = List(interactionService, interactionType, userInteractionCount)
trait Properties extends lspace.ns.vocab.schema.StructuredValue.Properties{
lazy val interactionService = lspace.ns.vocab.schema.interactionService.property
lazy val interactionType = lspace.ns.vocab.schema.interactionType.property
lazy val userInteractionCount = lspace.ns.vocab.schema.userInteractionCount.property
}
}