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

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

The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object SpeakableSpecification extends OntologyDef(
        iri = "http://schema.org/SpeakableSpecification",
        iris = Set("http://schema.org/SpeakableSpecification"),
        label = "SpeakableSpecification",
        comment = """A SpeakableSpecification indicates (typically via xpath or cssSelector) sections of a document that are highlighted as particularly speakable. Instances of this type are expected to be used primarily as values of the speakable property.""",
        `@extends` = List(Intangible.ontology)
       ){
object keys extends lspace.ns.vocab.schema.Intangible.Properties{
lazy val cssSelector = lspace.ns.vocab.schema.cssSelector.property
lazy val xpath = lspace.ns.vocab.schema.xpath.property
}
override lazy val properties: List[LProperty] = List(cssSelector, xpath)
trait Properties extends lspace.ns.vocab.schema.Intangible.Properties{
lazy val cssSelector = lspace.ns.vocab.schema.cssSelector.property
lazy val xpath = lspace.ns.vocab.schema.xpath.property
}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy