lspace.ns.vocab.schema.disambiguatingDescription.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.Label.D._
import lspace.Label.P._
import lspace.structure.{Property => LProperty, PropertyDef}
object disambiguatingDescription extends PropertyDef(
iri = "http://schema.org/disambiguatingDescription",
iris = Set("http://schema.org/disambiguatingDescription"),
label = "disambiguatingDescription",
comment = """A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.""",
`@extends` = List(description.property),
`@range` = List(`@string`)
){
override lazy val properties: List[LProperty] = List()
trait Properties extends lspace.ns.vocab.schema.description.Properties
}