lspace.ns.vocab.schema.gtin8.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 gtin8 extends PropertyDef(
iri = "http://schema.org/gtin8",
iris = Set("http://schema.org/gtin8"),
label = "gtin8",
comment = """The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See GS1 GTIN Summary for more details.""",
`@extends` = List(identifier.property),
`@range` = List(`@string`)
){
override lazy val properties: List[LProperty] = List()
trait Properties extends lspace.ns.vocab.schema.identifier.Properties
}