lspace.ns.vocab.schema.SendAction.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object SendAction extends OntologyDef(
iri = "http://schema.org/SendAction",
iris = Set("http://schema.org/SendAction"),
label = "SendAction",
comment = """The act of physically/electronically dispatching an object for transfer from an origin to a destination.Related actions:
- ReceiveAction: The reciprocal of SendAction.
- GiveAction: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you).
""",
`@extends` = List(TransferAction.ontology)
){
object keys extends lspace.ns.vocab.schema.TransferAction.Properties{
lazy val deliveryMethod = lspace.ns.vocab.schema.deliveryMethod.property
lazy val recipient = lspace.ns.vocab.schema.recipient.property
}
override lazy val properties: List[LProperty] = List(deliveryMethod, recipient)
trait Properties extends lspace.ns.vocab.schema.TransferAction.Properties{
lazy val deliveryMethod = lspace.ns.vocab.schema.deliveryMethod.property
lazy val recipient = lspace.ns.vocab.schema.recipient.property
}
}