lspace.ns.vocab.schema.amount.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 amount extends PropertyDef(
iri = "http://schema.org/amount",
iris = Set("http://schema.org/amount"),
label = "amount",
comment = """The amount of money.""",
`@extends` = List(),
`@range` = List(MonetaryAmount.ontology, `@number`)
){
override lazy val properties: List[LProperty] = List()
trait Properties
}