lspace.ns.vocab.schema.PerformanceRole.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object PerformanceRole extends OntologyDef(
iri = "http://schema.org/PerformanceRole",
iris = Set("http://schema.org/PerformanceRole"),
label = "PerformanceRole",
comment = """A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.""",
`@extends` = List(Role.ontology)
){
object keys extends lspace.ns.vocab.schema.Role.Properties{
lazy val characterName = lspace.ns.vocab.schema.characterName.property
}
override lazy val properties: List[LProperty] = List(characterName)
trait Properties extends lspace.ns.vocab.schema.Role.Properties{
lazy val characterName = lspace.ns.vocab.schema.characterName.property
}
}