lspace.ns.vocab.schema.SportsOrganization.scala Maven / Gradle / Ivy
The newest version!
package lspace.ns.vocab.schema
import lspace.ns.vocab.schema._
import lspace.structure.{Property => LProperty, OntologyDef}
object SportsOrganization extends OntologyDef(
iri = "http://schema.org/SportsOrganization",
iris = Set("http://schema.org/SportsOrganization"),
label = "SportsOrganization",
comment = """Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.""",
`@extends` = List(Organization.ontology)
){
object keys extends lspace.ns.vocab.schema.Organization.Properties{
lazy val sport = lspace.ns.vocab.schema.sport.property
}
override lazy val properties: List[LProperty] = List(sport)
trait Properties extends lspace.ns.vocab.schema.Organization.Properties{
lazy val sport = lspace.ns.vocab.schema.sport.property
}
}