All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lspace.ns.vocab.schema.ScreeningEvent.scala Maven / Gradle / Ivy

The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object ScreeningEvent extends OntologyDef(
        iri = "http://schema.org/ScreeningEvent",
        iris = Set("http://schema.org/ScreeningEvent"),
        label = "ScreeningEvent",
        comment = """A screening of a movie or other video.""",
        `@extends` = List(Event.ontology)
       ){
object keys extends lspace.ns.vocab.schema.Event.Properties{
lazy val subtitleLanguage = lspace.ns.vocab.schema.subtitleLanguage.property
lazy val videoFormat = lspace.ns.vocab.schema.videoFormat.property
lazy val workPresented = lspace.ns.vocab.schema.workPresented.property
}
override lazy val properties: List[LProperty] = List(subtitleLanguage, videoFormat, workPresented)
trait Properties extends lspace.ns.vocab.schema.Event.Properties{
lazy val subtitleLanguage = lspace.ns.vocab.schema.subtitleLanguage.property
lazy val videoFormat = lspace.ns.vocab.schema.videoFormat.property
lazy val workPresented = lspace.ns.vocab.schema.workPresented.property
}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy