lspace.ns.vocab.schema.LeaveAction.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object LeaveAction extends OntologyDef(
iri = "http://schema.org/LeaveAction",
iris = Set("http://schema.org/LeaveAction"),
label = "LeaveAction",
comment = """An agent leaves an event / group with participants/friends at a location.
Related actions:
- JoinAction: The antonym of LeaveAction.
- UnRegisterAction: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.
""",
`@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
}
}