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

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

The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object IndividualProduct extends OntologyDef(
        iri = "http://schema.org/IndividualProduct",
        iris = Set("http://schema.org/IndividualProduct"),
        label = "IndividualProduct",
        comment = """A single, identifiable product instance (e.g. a laptop with a particular serial number).""",
        `@extends` = List(Product.ontology)
       ){
object keys extends lspace.ns.vocab.schema.Product.Properties{
lazy val serialNumber = lspace.ns.vocab.schema.serialNumber.property
}
override lazy val properties: List[LProperty] = List(serialNumber)
trait Properties extends lspace.ns.vocab.schema.Product.Properties{
lazy val serialNumber = lspace.ns.vocab.schema.serialNumber.property
}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy