lspace.ns.vocab.schema.JoinAction.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object JoinAction extends OntologyDef(
iri = "http://schema.org/JoinAction",
iris = Set("http://schema.org/JoinAction"),
label = "JoinAction",
comment = """An agent joins an event/group with participants/friends at a location.
Related actions:
- RegisterAction: Unlike RegisterAction, JoinAction refers to joining a group/team of people.
- SubscribeAction: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.
- FollowAction: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates.
""",
`@extends` = List(InteractAction.ontology)
){
object keys extends lspace.ns.vocab.schema.InteractAction.Properties{
lazy val event = lspace.ns.vocab.schema.event.property
}
override lazy val properties: List[LProperty] = List(event)
trait Properties extends lspace.ns.vocab.schema.InteractAction.Properties{
lazy val event = lspace.ns.vocab.schema.event.property
}
}