lspace.ns.vocab.schema.temporal.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 temporal extends PropertyDef(
iri = "http://schema.org/temporal",
iris = Set("http://schema.org/temporal"),
label = "temporal",
comment = """The "temporal" property can be used in cases where more specific properties
(e.g. temporalCoverage, dateCreated, dateModified, datePublished) are not known to be appropriate.""",
`@extends` = List(),
`@range` = List(`@datetime`, `@string`)
){
override lazy val properties: List[LProperty] = List()
trait Properties
}