lspace.ns.vocab.schema.addressCountry.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 addressCountry extends PropertyDef(
iri = "http://schema.org/addressCountry",
iris = Set("http://schema.org/addressCountry"),
label = "addressCountry",
comment = """The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code.""",
`@extends` = List(),
`@range` = List(Country.ontology, `@string`)
){
override lazy val properties: List[LProperty] = List()
trait Properties
}