lspace.ns.vocab.schema.endTime.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.Label.D._
import lspace.Label.P._
import lspace.structure.{Property => LProperty, PropertyDef}
object endTime extends PropertyDef(
iri = "http://schema.org/endTime",
iris = Set("http://schema.org/endTime"),
label = "endTime",
comment = """The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the end of a clip within a larger file.
Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.""",
`@extends` = List(),
`@range` = List(`@datetime`)
){
override lazy val properties: List[LProperty] = List()
trait Properties
}