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

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

The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object ParentAudience extends OntologyDef(
        iri = "http://schema.org/ParentAudience",
        iris = Set("http://schema.org/ParentAudience"),
        label = "ParentAudience",
        comment = """A set of characteristics describing parents, who can be interested in viewing some content.""",
        `@extends` = List(PeopleAudience.ontology)
       ){
object keys extends lspace.ns.vocab.schema.PeopleAudience.Properties{
lazy val childMaxAge = lspace.ns.vocab.schema.childMaxAge.property
lazy val childMinAge = lspace.ns.vocab.schema.childMinAge.property
}
override lazy val properties: List[LProperty] = List(childMaxAge, childMinAge)
trait Properties extends lspace.ns.vocab.schema.PeopleAudience.Properties{
lazy val childMaxAge = lspace.ns.vocab.schema.childMaxAge.property
lazy val childMinAge = lspace.ns.vocab.schema.childMinAge.property
}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy