lspace.ns.vocab.schema.currency.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 currency extends PropertyDef(
iri = "http://schema.org/currency",
iris = Set("http://schema.org/currency"),
label = "currency",
comment = """The currency in which the monetary amount is expressed.
Use standard formats: ISO 4217 currency format e.g. "USD"; Ticker symbol for cryptocurrencies e.g. "BTC"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. "Ithaca HOUR".""",
`@extends` = List(),
`@range` = List(`@string`)
){
override lazy val properties: List[LProperty] = List()
trait Properties
}