lspace.ns.vocab.schema.funder.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 funder extends PropertyDef(
iri = "http://schema.org/funder",
iris = Set("http://schema.org/funder"),
label = "funder",
comment = """A person or organization that supports (sponsors) something through some kind of financial contribution.""",
`@extends` = List(sponsor.property),
`@range` = List(Organization.ontology, Person.ontology)
){
override lazy val properties: List[LProperty] = List()
trait Properties extends lspace.ns.vocab.schema.sponsor.Properties
}