lspace.ns.vocab.schema.CheckInAction.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object CheckInAction extends OntologyDef(
iri = "http://schema.org/CheckInAction",
iris = Set("http://schema.org/CheckInAction"),
label = "CheckInAction",
comment = """The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).
Related actions:
- CheckOutAction: The antonym of CheckInAction.
- ArriveAction: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.
- ConfirmAction: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service rather than its validity/existence.
""",
`@extends` = List(CommunicateAction.ontology)
){
object keys extends lspace.ns.vocab.schema.CommunicateAction.Properties{
}
override lazy val properties: List[LProperty] = List()
trait Properties extends lspace.ns.vocab.schema.CommunicateAction.Properties{
}
}