ns1:publishedCity leaf node


URI

http://scigraph.springernature.com/ontologies/core/publishedCity

Label

Property: published city

Description

The :publishedCity property specifies the name of a city, as it appears in the context of an event, e.g. a publication.

Inherits from

Usage

DOMAINPROPERTYRANGE
ns1:Event ns1:publishedCity xsd:string

Implementation

@prefix ns1: <http://scigraph.springernature.com/ontologies/core/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ns1:publishedCity a owl:DatatypeProperty ;
    rdfs:label "Property: published city" ;
    rdfs:comment "The :publishedCity property specifies the name of a city, as it appears in the context of an event, e.g. a publication."@en ;
    rdfs:domain ns1:Event ;
    rdfs:isDefinedBy ns1: ;
    rdfs:range xsd:string ;
    rdfs:subPropertyOf ns1:nameInfo .